home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / ADDON.PAK / IDEUITST.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  557 b   |  30 lines

  1. #ifndef __IDEUITST_H_
  2. #define __IDEUITST_H_
  3.  
  4. #include <ideaddon\iideui.h>
  5.  
  6. #include "tests.h"
  7.  
  8.  
  9.  
  10. class IdeUITest : public TestObject
  11. {
  12.     public:
  13.       IdeUITest();
  14.       ~IdeUITest();
  15.  
  16.       //TestObject Interface implementation
  17.       virtual BOOL Init();
  18.       virtual void UnInit();
  19.       virtual const char* GetName();
  20.       virtual const char* GetTestDescription(int testNum);
  21.       virtual void DoTest(int testNum);
  22.  
  23.     protected:   
  24.       void RunMessageBoxes();
  25.       
  26.       IIdeUI* ideui;
  27. };
  28.  
  29.  
  30. #endif // __IDEUITST_H_