home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 February: Tool Chest / Dev.CD Feb 95 / Dev.CD Feb 95.toast / New System Software Extensions / ASLM SDK v1.1.2 / ASLM Examples / TestTools / Sources / TestExceptions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-21  |  860 b   |  36 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        TestExceptions.h
  3.  
  4.     Contains:    Declaration for the TTestExceptions class
  5.  
  6.     Copyright:    © 1992-1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __TESTEXCEPTIONS__
  11. #define __TESTEXCEPTIONS__
  12.  
  13. #ifndef __TESTTOOL__
  14. #include <TestTool.h>
  15. #endif
  16.  
  17. /*******************************************************************************
  18. ** CLASS TTestExceptions
  19. ********************************************************************************/
  20.  
  21. #define kTTestExceptionsID    kTestToolPrefix "TTestExceptions,1.1"
  22.  
  23. class TTestExceptions : public TTestTool
  24. {
  25.     public:
  26.                             TTestExceptions();
  27.         virtual                ~TTestExceptions();
  28.         
  29.         virtual void        InitTest(Boolean verbose, Boolean debug,
  30.                                      int argc, char** argv);        
  31.         virtual void        RunTestIteration(Boolean verbose, Boolean debug);
  32.         virtual void        EndTest(Boolean verbose, Boolean debug);
  33. };
  34.  
  35. #endif
  36.