1/*
2	$Id: ConstructionTest1.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 ConstructionTest1_H
11#define ConstructionTest1_H
12
13
14#include "LockerTestCase.h"
15
16
17class ConstructionTest1 :
18	public LockerTestCase {
19
20private:
21	bool NameMatches(const char *, BLocker *);
22	bool IsBenaphore(BLocker *);
23
24protected:
25
26public:
27	void PerformTest(void);
28	ConstructionTest1(std::string name = "");
29	virtual ~ConstructionTest1();
30	static CppUnit::Test *suite(void);
31	};
32
33#endif
34
35
36
37