xref: /haiku/src/tests/kits/app/bapplication/AppQuitTester.h (revision ff952bade491ce49d08aa44886dfd20133fbb6d0)
1 //------------------------------------------------------------------------------
2 //	AppQuitTester.h
3 //
4 //------------------------------------------------------------------------------
5 
6 #ifndef APP_QUIT_TESTER_H
7 #define APP_QUIT_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 AppQuitTester : public TestCase
23 {
24 	public:
AppQuitTester()25 		AppQuitTester() {;}
AppQuitTester(std::string name)26 		AppQuitTester(std::string name) : TestCase(name) {;}
27 
28 		void QuitTest1();
29 		void QuitTest2();
30 		void QuitTest3();
31 		void QuitTest4();
32 
33 		static Test* Suite();
34 };
35 
36 #endif	// APP_QUIT_TESTER_H
37 
38