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

  1. /*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  2.  
  3.   edittest.h
  4.   Created: 10/24/95
  5.   Copyright (c) 1995, Borland International
  6.   $Revision:   1.18  $
  7.    
  8. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/  
  9. #ifndef __EDITTEST_H
  10. #define __EDITTEST_H
  11.  
  12. #include <ideaddon\ieditor.h>
  13. #include "tests.h"
  14.  
  15. //.............................................................................
  16. class EditTestA : public TestObject {
  17.  public:
  18.   EditTestA();
  19.   virtual ~EditTestA();
  20.  
  21.   //........ TestObject Methods .......
  22.   virtual BOOL Init();
  23.   virtual void UnInit();  
  24.   virtual const char * GetName();
  25.   virtual const char * GetTestDescription( int testNum );
  26.   virtual void DoTest( int testNum );
  27.  
  28.  protected:
  29.   IEditorServer * _editServer;
  30. }; 
  31.  
  32. //.............................................................................
  33. class EditTestB : public TestObject {
  34.  public:
  35.   EditTestB();
  36.   virtual ~EditTestB();
  37.  
  38.   //........ TestObject Methods .......
  39.   virtual BOOL Init();
  40.   virtual void UnInit();  
  41.   virtual const char * GetName();
  42.   virtual const char * GetTestDescription( int testNum );
  43.   virtual void DoTest( int testNum );
  44.  
  45.  protected:
  46.   IEditorServer * _editServer;
  47. }; 
  48.  
  49. #endif    //  __EDITTEST_H
  50.