1 //------------------------------------------------------------------------------ 2 // RosterWatchingTester.h 3 // 4 //------------------------------------------------------------------------------ 5 6 #ifndef ROSTER_WATCHING_TESTER_H 7 #define ROSTER_WATCHING_TESTER_H 8 9 // Standard Includes ----------------------------------------------------------- 10 11 // System Includes ------------------------------------------------------------- 12 13 // Project Includes ------------------------------------------------------------ 14 #include <TestCase.h> 15 16 // Local Includes -------------------------------------------------------------- 17 #include "../common.h" 18 19 class BApplication; // forward declaration 20 21 // Local Defines --------------------------------------------------------------- 22 23 // Globals --------------------------------------------------------------------- 24 25 class RosterWatchingTester : public BTestCase 26 { 27 public: 28 RosterWatchingTester() {;} 29 RosterWatchingTester(std::string name) : BTestCase(name) {;} 30 31 void setUp(); 32 void tearDown(); 33 34 void WatchingTest1(); 35 void WatchingTest2(); 36 void WatchingTest3(); 37 38 static Test* Suite(); 39 40 private: 41 BApplication *fApplication; 42 }; 43 44 #endif // ROSTER_WATCHING_TESTER_H 45