xref: /haiku/src/tests/kits/support/blocker/DestructionTest2.h (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 /*
2 	$Id: DestructionTest2.h 301 2002-07-18 05:32:00Z tylerdauwalder $
3 
4 	This file defines a class for performing one test of BLocker
5 	functionality.
6 
7 	*/
8 
9 
10 #ifndef DestructionTest2_H
11 #define DestructionTest2_H
12 
13 #include "LockerTestCase.h"
14 
15 class CppUnit::Test;
16 
17 class DestructionTest2 : public LockerTestCase {
18 public:
19 	void TestThread1(void);
20 	void TestThread2(void);
21 	DestructionTest2(std::string name, bool isBenaphore);
22 	virtual ~DestructionTest2();
23 	static CppUnit::Test *suite(void);
24 };
25 
26 #endif
27 
28 
29 
30