home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sa104os2.zip / SATHR104.ZIP / SATHER / TEST / TEST-ALL.SA next >
Text File  |  1994-10-25  |  1KB  |  29 lines

  1. -- Copyright (C) International Computer Science Institute, 1994.  COPYRIGHT  --
  2. -- NOTICE: This code is provided "AS IS" WITHOUT ANY WARRANTY and is subject --
  3. -- to the terms of the SATHER LIBRARY GENERAL PUBLIC LICENSE contained in    --
  4. -- the file "Doc/License" of the Sather distribution.  The license is also   --
  5. -- available from ICSI, 1947 Center St., Suite 600, Berkeley CA 94704, USA.  --
  6. --------> Please email comments to "sather-bugs@icsi.berkeley.edu". <----------
  7.  
  8. -------------------------------------------------------------------
  9. class TEST_ALL is
  10.    
  11.    main is
  12.       TEST_AREF::main;
  13.       TEST_ARRAY2::main;
  14.       TEST_VEC::main;
  15.       TEST_MAT::main;
  16.       TEST_FSTR::main;
  17.       TEST_INT::main;
  18.       TEST_RND::main;
  19.       TEST_BOOL::main;
  20.       TEST_CHAR::main;
  21.       TEST_FLTD::main;
  22.       TEST_ARRAY::main;
  23.       #TEST_MISC.main;  -- # required to emulate main object creation
  24.       end;
  25.    
  26. end; -- class TEST_ALL
  27.  
  28. -------------------------------------------------------------------
  29.