1 //------------------------------------------------------------------------------ 2 // NextHandlerTest.h 3 // 4 //------------------------------------------------------------------------------ 5 6 #ifndef NEXTHANDLERTEST_H 7 #define NEXTHANDLERTEST_H 8 9 // Standard Includes ----------------------------------------------------------- 10 11 // System Includes ------------------------------------------------------------- 12 #include <Handler.h> 13 14 // Project Includes ------------------------------------------------------------ 15 16 // Local Includes -------------------------------------------------------------- 17 #include "../common.h" 18 19 // Local Defines --------------------------------------------------------------- 20 21 // Globals --------------------------------------------------------------------- 22 23 class TNextHandlerTest : public TestCase 24 { 25 public: 26 TNextHandlerTest() {;} 27 TNextHandlerTest(std::string name) : TestCase(name) {;} 28 29 void NextHandler1(); 30 void NextHandler2(); 31 32 static Test* Suite(); 33 34 private: 35 BHandler fHandler; 36 }; 37 38 #endif //NEXTHANDLERTEST_H 39 40 /* 41 * $Log $ 42 * 43 * $Id $ 44 * 45 */ 46 47