1 //------------------------------------------------------------------------------ 2 // UnlockLooperTest.h 3 // 4 //------------------------------------------------------------------------------ 5 6 #ifndef UNLOCKLOOPERTEST_H 7 #define UNLOCKLOOPERTEST_H 8 9 // Standard Includes ----------------------------------------------------------- 10 11 // System Includes ------------------------------------------------------------- 12 #if defined(TEST_R5) 13 #include <be/app/Handler.h> 14 #else 15 #include <Handler.h> 16 #endif 17 18 // Project Includes ------------------------------------------------------------ 19 20 // Local Includes -------------------------------------------------------------- 21 #include "../common.h" 22 23 // Local Defines --------------------------------------------------------------- 24 25 // Globals --------------------------------------------------------------------- 26 27 class TUnlockLooperTest : public TestCase 28 { 29 public: 30 TUnlockLooperTest() {;} 31 TUnlockLooperTest(std::string name) : TestCase(name) {;} 32 33 void UnlockLooper1(); 34 void UnlockLooper2(); 35 void UnlockLooper3(); 36 37 static Test* Suite(); 38 }; 39 40 #endif //UNLOCKLOOPERTEST_H 41 42 /* 43 * $Log $ 44 * 45 * $Id $ 46 * 47 */ 48 49