1 //------------------------------------------------------------------------------ 2 // SetCountTester.h 3 // 4 //------------------------------------------------------------------------------ 5 6 #ifndef SET_COUNT_TESTER_H 7 #define SET_COUNT_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 SetCountTester : public TestCase 23 { 24 public: SetCountTester()25 SetCountTester() {;} SetCountTester(std::string name)26 SetCountTester(std::string name) : TestCase(name) {;} 27 28 void SetCount1(); 29 void SetCount2(); 30 void SetCount3(); 31 void SetCount4(); 32 void SetCount5(); 33 void SetCount6(); 34 void SetCount7(); 35 36 static Test* Suite(); 37 }; 38 39 #endif // SET_COUNT_TESTER_H 40