xref: /haiku/src/tests/kits/app/bmessagerunner/SetIntervalTester.h (revision dace24c6255b30ff7f266dd08e43441f517851d3)
1 //------------------------------------------------------------------------------
2 //	SetIntervalTester.h
3 //
4 //------------------------------------------------------------------------------
5 
6 #ifndef SET_INTERVAL_TESTER_H
7 #define SET_INTERVAL_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 SetIntervalTester : public TestCase
23 {
24 	public:
SetIntervalTester()25 		SetIntervalTester() {;}
SetIntervalTester(std::string name)26 		SetIntervalTester(std::string name) : TestCase(name) {;}
27 
28 		void SetInterval1();
29 		void SetInterval2();
30 		void SetInterval3();
31 		void SetInterval4();
32 		void SetInterval5();
33 		void SetInterval6();
34 		void SetInterval7();
35 
36 		static Test* Suite();
37 };
38 
39 #endif	// SET_INTERVAL_TESTER_H
40