1 //------------------------------------------------------------------------------ 2 // BHandlerTester.h 3 // 4 //------------------------------------------------------------------------------ 5 6 #ifndef BHANDLERTESTER_H 7 #define BHANDLERTESTER_H 8 9 // Standard Includes ----------------------------------------------------------- 10 11 // System Includes ------------------------------------------------------------- 12 13 // Project Includes ------------------------------------------------------------ 14 15 // Local Includes -------------------------------------------------------------- 16 #include "../common.h" 17 18 // Local Defines --------------------------------------------------------------- 19 20 // Globals --------------------------------------------------------------------- 21 22 class TBHandlerTester : public TestCase 23 { 24 public: TBHandlerTester()25 TBHandlerTester() {;} TBHandlerTester(std::string name)26 TBHandlerTester(std::string name) : TestCase(name) {;} 27 28 void BHandler1(); 29 void BHandler2(); 30 void BHandler3(); 31 void BHandler4(); 32 void BHandler5(); 33 34 void Archive1(); 35 void Archive2(); 36 void Archive3(); 37 void Archive4(); 38 39 void Instantiate1(); 40 void Instantiate2(); 41 void Instantiate3(); 42 43 void SetName1(); 44 void SetName2(); 45 46 void Perform1(); 47 48 void FilterList1(); 49 50 void UnlockLooper1(); 51 void UnlockLooper2(); 52 void UnlockLooper3(); 53 54 static Test* Suite(); 55 }; 56 57 #endif //BHANDLERTESTER_H 58 59 /* 60 * $Log $ 61 * 62 * $Id $ 63 * 64 */ 65 66