1*8909e4baSIngo Weinhold //------------------------------------------------------------------------------ 2*8909e4baSIngo Weinhold // BApplicationTester.h 3*8909e4baSIngo Weinhold // 4*8909e4baSIngo Weinhold //------------------------------------------------------------------------------ 5*8909e4baSIngo Weinhold 6*8909e4baSIngo Weinhold #ifndef B_APPLICATION_TESTER_H 7*8909e4baSIngo Weinhold #define B_APPLICATION_TESTER_H 8*8909e4baSIngo Weinhold 9*8909e4baSIngo Weinhold // Standard Includes ----------------------------------------------------------- 10*8909e4baSIngo Weinhold 11*8909e4baSIngo Weinhold // System Includes ------------------------------------------------------------- 12*8909e4baSIngo Weinhold 13*8909e4baSIngo Weinhold // Project Includes ------------------------------------------------------------ 14*8909e4baSIngo Weinhold 15*8909e4baSIngo Weinhold // Local Includes -------------------------------------------------------------- 16*8909e4baSIngo Weinhold #include "../common.h" 17*8909e4baSIngo Weinhold 18*8909e4baSIngo Weinhold // Local Defines --------------------------------------------------------------- 19*8909e4baSIngo Weinhold 20*8909e4baSIngo Weinhold // Globals --------------------------------------------------------------------- 21*8909e4baSIngo Weinhold 22*8909e4baSIngo Weinhold class TBApplicationTester : public TestCase 23*8909e4baSIngo Weinhold { 24*8909e4baSIngo Weinhold public: 25*8909e4baSIngo Weinhold TBApplicationTester() {;} 26*8909e4baSIngo Weinhold TBApplicationTester(std::string name) : TestCase(name) {;} 27*8909e4baSIngo Weinhold 28*8909e4baSIngo Weinhold void BApplication1(); 29*8909e4baSIngo Weinhold 30*8909e4baSIngo Weinhold static Test* Suite(); 31*8909e4baSIngo Weinhold }; 32*8909e4baSIngo Weinhold 33*8909e4baSIngo Weinhold #endif // B_APPLICATION_TESTER_H 34*8909e4baSIngo Weinhold 35