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 void IsWatched3(); 31 void IsWatched4(); 32 void IsWatched5(); 33 34 static Test* Suite(); 35 36 private: 37 BHandler fHandler; 38 }; 39 40 #endif //ISWATCHEDTEST_H 41 42 /* 43 * $Log $ 44 * 45 * $Id $ 46 * 47 */ 48 49