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