home *** CD-ROM | disk | FTP | other *** search
- /*
- File: TestExceptions.h
-
- Contains: Declaration for the TTestExceptions class
-
- Copyright: © 1992-1994 by Apple Computer, Inc., all rights reserved.
-
- */
-
- #ifndef __TESTEXCEPTIONS__
- #define __TESTEXCEPTIONS__
-
- #ifndef __TESTTOOL__
- #include <TestTool.h>
- #endif
-
- /*******************************************************************************
- ** CLASS TTestExceptions
- ********************************************************************************/
-
- #define kTTestExceptionsID kTestToolPrefix "TTestExceptions,1.2"
-
- class TTestExceptions : public TTestTool
- {
- public:
- _CDECL TTestExceptions();
- virtual ~_CDECL TTestExceptions();
-
- virtual void _CDECL InitTest(BooleanParm verbose, BooleanParm debug,
- int argc, char** argv);
- virtual void _CDECL RunTestIteration(BooleanParm verbose, BooleanParm debug);
- virtual void _CDECL EndTest(BooleanParm verbose, BooleanParm debug);
- };
-
- #endif
-