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