xref: /haiku/src/tests/kits/app/bhandler/LockLooperTest.h (revision c90684742e7361651849be4116d0e5de3a817194)
1 //------------------------------------------------------------------------------
2 //	LockLooper.h
3 //
4 //------------------------------------------------------------------------------
5 
6 #ifndef LOCKLOOPER_H
7 #define LOCKLOOPER_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 TLockLooperTest : public TestCase
24 {
25 	public:
26 		TLockLooperTest() {;}
27 		TLockLooperTest(std::string name) : TestCase(name) {;}
28 
29 		void LockLooper1();
30 		void LockLooper2();
31 		void LockLooper3();
32 		void LockLooper4();
33 
34 		static Test* Suite();
35 };
36 
37 #endif	//LOCKLOOPER_H
38 
39 /*
40  * $Log $
41  *
42  * $Id  $
43  *
44  */
45 
46