xref: /haiku/src/tests/kits/app/bmessage/MessageConstructTest.h (revision e81a954787e50e56a7f06f72705b7859b6ab06d1)
1 //------------------------------------------------------------------------------
2 //	MessageConstructTest.h
3 //
4 //------------------------------------------------------------------------------
5 
6 #ifndef MESSAGECONSTRUCTTEST_H
7 #define MESSAGECONSTRUCTTEST_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 BMessage;
23 
24 class TMessageConstructTest : public TestCase
25 {
26 	public:
27 		TMessageConstructTest() {;}
28 		TMessageConstructTest(std::string name) : TestCase(name) {;}
29 
30 		void MessageConstructTest1();
31 		void MessageConstructTest2();
32 		void MessageConstructTest3();
33 
34 		static TestSuite*	Suite();
35 
36 	private:
37 		void ConfirmNullConstruction(BMessage& msg);
38 };
39 
40 #endif	//MESSAGECONSTRUCTTEST_H
41 
42 /*
43  * $Log $
44  *
45  * $Id  $
46  *
47  */
48 
49