home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM Examples / TestTools / Sources / TestMisc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  902 b   |  45 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        TestMisc.h
  3.  
  4.     Contains:    Miscellaneous tests
  5.  
  6.     Copyright:    © 1993-1994 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __TESTMISC__
  11. #define __TESTMISC__
  12.  
  13. #ifndef __TESTTOOL__
  14. #include <TestTool.h>
  15. #endif
  16.  
  17.  
  18. struct ClientData
  19. {
  20.     int        fData;
  21.     void*    fPointer;
  22. };
  23.  
  24. /*******************************************************************************
  25. ** CLASS TTestMisc
  26. ********************************************************************************/
  27.  
  28. #define kTTestMiscID    kTestToolPrefix "TTestMisc,1.2"
  29.  
  30. class TTestMisc : public TTestTool
  31. {
  32.     public:
  33.                             _CDECL TTestMisc();
  34.         virtual                ~_CDECL TTestMisc();
  35.         
  36.         virtual void        _CDECL InitTest(BooleanParm verbose, BooleanParm debug,
  37.                                      int argc, char** argv);        
  38.         virtual void        _CDECL RunTestIteration(BooleanParm verbose, BooleanParm debug);
  39.         virtual void        _CDECL EndTest(BooleanParm verbose, BooleanParm debug);
  40.         
  41. };
  42.  
  43. #endif
  44.  
  45.