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