xref: /haiku/src/tests/kits/app/broster/TeamForTester.h (revision 235efd87007481c292b474675fdb544e9c3201d4)
1 //------------------------------------------------------------------------------
2 //	TeamForTester.h
3 //
4 //------------------------------------------------------------------------------
5 
6 #ifndef TEAM_FOR_TESTER_H
7 #define TEAM_FOR_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 TeamForTester : public TestCase
23 {
24 	public:
TeamForTester()25 		TeamForTester() {;}
TeamForTester(std::string name)26 		TeamForTester(std::string name) : TestCase(name) {;}
27 
28 		void TeamForTestA1();
29 		void TeamForTestA2();
30 		void TeamForTestA3();
31 
32 		void TeamForTestB1();
33 		void TeamForTestB2();
34 		void TeamForTestB3();
35 
36 		static Test* Suite();
37 };
38 
39 #endif	// TEAM_FOR_TESTER_H
40 
41