xref: /haiku/src/tests/kits/app/bhandler/SetFilterListTest.h (revision 76a5f3484abd9a293483b45f40455c0b58e6f3f0)
1 //------------------------------------------------------------------------------
2 //	SetFilterListTest.h
3 //
4 //------------------------------------------------------------------------------
5 
6 #ifndef SETFILTERLISTTEST_H
7 #define SETFILTERLISTTEST_H
8 
9 // Standard Includes -----------------------------------------------------------
10 
11 // System Includes -------------------------------------------------------------
12 #include <Handler.h>
13 
14 // Project Includes ------------------------------------------------------------
15 
16 // Local Includes --------------------------------------------------------------
17 #include "../common.h"
18 
19 // Local Defines ---------------------------------------------------------------
20 
21 // Globals ---------------------------------------------------------------------
22 
23 class TSetFilterListTest : public TestCase
24 {
25 	public:
TSetFilterListTest()26 		TSetFilterListTest() {;}
TSetFilterListTest(std::string name)27 		TSetFilterListTest(std::string name) : TestCase(name) {;}
28 
29 		void SetFilterList1();
30 		void SetFilterList2();
31 		void SetFilterList3();
32 		void SetFilterList4();
33 		void SetFilterList5();
34 
35 		static Test* Suite();
36 };
37 
38 #endif	//SETFILTERLISTTEST_H
39 
40 /*
41  * $Log $
42  *
43  * $Id  $
44  *
45  */
46 
47