xref: /haiku/src/tests/kits/app/bmessagerunner/GetInfoTester.h (revision e439adc551049dce21e24e7a7039cebe295e989b)
1 //------------------------------------------------------------------------------
2 //	GetInfoTester.h
3 //
4 //------------------------------------------------------------------------------
5 
6 #ifndef GET_INFO_TESTER_H
7 #define GET_INFO_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 GetInfoTester : public TestCase
23 {
24 	public:
GetInfoTester()25 		GetInfoTester() {;}
GetInfoTester(std::string name)26 		GetInfoTester(std::string name) : TestCase(name) {;}
27 
28 		void GetInfo1();
29 		void GetInfo2();
30 
31 		static Test* Suite();
32 };
33 
34 #endif	// GET_INFO_TESTER_H
35