/* * SingletonUnitTest.hpp * * Created on: Mar 11, 2010 * Author: crueger */ #ifndef SINGLETONUNITTEST_HPP_ #define SINGLETONUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include class SingletonTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( SingletonTest ); CPPUNIT_TEST ( ConstructionTest ); CPPUNIT_TEST ( LockedTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void ConstructionTest(); void LockedTest(); }; #endif /* SINGLETONUNITTEST_HPP_ */