1 //------------------------------------------------------------------------------ 2 // GetAppListTester.h 3 // 4 //------------------------------------------------------------------------------ 5 6 #ifndef GET_APP_LIST_TESTER_H 7 #define GET_APP_LIST_TESTER_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 GetAppListTester : public TestCase 23 { 24 public: 25 GetAppListTester() {;} 26 GetAppListTester(std::string name) : TestCase(name) {;} 27 28 void GetAppListTestA1(); 29 void GetAppListTestA2(); 30 31 void GetAppListTestB1(); 32 void GetAppListTestB2(); 33 void GetAppListTestB3(); 34 35 static Test* Suite(); 36 }; 37 38 #endif // GET_APP_LIST_TESTER_H 39 40