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