1 //------------------------------------------------------------------------------ 2 // BCursorTester.h 3 // 4 //------------------------------------------------------------------------------ 5 6 #ifndef B_CURSOR_TESTER_H 7 #define B_CURSOR_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 BCursorTester : public TestCase 23 { 24 public: BCursorTester()25 BCursorTester() {;} BCursorTester(std::string name)26 BCursorTester(std::string name) : TestCase(name) {;} 27 28 void BCursor1(); 29 void BCursor2(); 30 void BCursor3(); 31 void BCursor4(); 32 void BCursor5(); 33 void BCursor6(); 34 void Instantiate1(); 35 void Instantiate2(); 36 void Archive1(); 37 void Archive2(); 38 39 static Test* Suite(); 40 }; 41 42 #endif // B_CURSOR_TESTER_H 43 44