/* * RegistryUnitTest.hpp * * Created on: Oct 27, 2010 * Author: heber */ #ifndef REGISTRYUNITTEST_HPP_ #define REGISTRYUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include class RegistryStub; /********************************************** Test classes **************************************/ class RegistryTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( RegistryTest) ; CPPUNIT_TEST ( InOutCheck ); CPPUNIT_TEST ( cleanupCheck ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void InOutCheck(); void cleanupCheck(); private: RegistryStub* registry; }; #endif /* REGISTRYUNITTEST_HPP_ */