xref: /haiku/src/tests/kits/app/blooper/RunTest.h (revision e81a954787e50e56a7f06f72705b7859b6ab06d1)
1 //------------------------------------------------------------------------------
2 //	RunTest.h
3 //
4 //------------------------------------------------------------------------------
5 
6 #ifndef RUNTEST_H
7 #define RUNTEST_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 TRunTest : public TestCase
23 {
24 	public:
25 		TRunTest() {;}
26 		TRunTest(std::string name) : TestCase(name) {;}
27 
28 		void RunTest1();
29 		void RunTest2();
30 		void RunTest3();
31 
32 		static TestSuite* Suite();
33 };
34 
35 #endif	//RUNTEST_H
36 
37 /*
38  * $Log $
39  *
40  * $Id  $
41  *
42  */
43 
44