1 //------------------------------------------------------------------------------ 2 // GetAppInfoTester.h 3 // 4 //------------------------------------------------------------------------------ 5 6 #ifndef GET_APP_INFO_TESTER_H 7 #define GET_APP_INFO_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 GetAppInfoTester : public TestCase 23 { 24 public: 25 GetAppInfoTester() {;} 26 GetAppInfoTester(std::string name) : TestCase(name) {;} 27 28 void GetAppInfoTestA1(); 29 void GetAppInfoTestA2(); 30 void GetAppInfoTestA3(); 31 32 void GetAppInfoTestB1(); 33 void GetAppInfoTestB2(); 34 void GetAppInfoTestB3(); 35 36 void GetRunningAppInfoTest1(); 37 void GetRunningAppInfoTest2(); 38 void GetRunningAppInfoTest3(); 39 40 static Test* Suite(); 41 }; 42 43 #endif // GET_APP_INFO_TESTER_H 44 45