xref: /haiku/src/tests/kits/app/blooper/AddCommonFilterTest.h (revision 7bf6c069361d8cc90da7487b7c39adc98da19fb7)
1 //------------------------------------------------------------------------------
2 //	AddCommonFilterTest.h
3 //
4 //------------------------------------------------------------------------------
5 
6 #ifndef ADDCOMMONFILTERTEST_H
7 #define ADDCOMMONFILTERTEST_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 TAddCommonFilterTest : public TestCase
23 {
24 	public:
TAddCommonFilterTest()25 		TAddCommonFilterTest() {;}
TAddCommonFilterTest(std::string name)26 		TAddCommonFilterTest(std::string name) : TestCase(name) {;}
27 
28 		void AddCommonFilterTest1();
29 		void AddCommonFilterTest2();
30 		void AddCommonFilterTest3();
31 		void AddCommonFilterTest4();
32 
33 		static TestSuite* Suite();
34 };
35 
36 #endif	//ADDCOMMONFILTERTEST_H
37 
38 /*
39  * $Log $
40  *
41  * $Id  $
42  *
43  */
44 
45