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