xref: /haiku/src/tests/kits/support/bautolock/AutolockLooperTest.h (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2 	$Id: AutolockLooperTest.h 332 2002-07-19 06:45:28Z tylerdauwalder $
3 
4 	This file defines the class for performing all BAutolock tests on a
5 	BLooper.
6 
7 	*/
8 
9 
10 #ifndef AutolockLooperTest_H
11 #define AutolockLooperTest_H
12 
13 
14 #include "ThreadedTestCase.h"
15 #include <string>
16 
17 class BLooper;
18 class CppUnit::Test;
19 
20 class AutolockLooperTest : public BThreadedTestCase {
21 
22 private:
23 	BLooper *theLooper;
24 
25 public:
26 	static Test *suite(void);
27 	void TestThread1(void);
28 	AutolockLooperTest(std::string);
29 	virtual ~AutolockLooperTest();
30 };
31 
32 #endif
33 
34 
35 
36 
37