/* * KeySetsContainerUnitTest.hpp * * Created on: Sep 16, 2011 * Author: heber */ #ifndef KEYSETSCONTAINERUNITTEST_HPP_ #define KEYSETSCONTAINERUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include class KeySetsContainer; /********************************************** Test classes **************************************/ class KeySetsContainerTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( KeySetsContainerTest) ; CPPUNIT_TEST ( EqualityTest ); CPPUNIT_TEST ( SerializationTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void EqualityTest(); void SerializationTest(); private: KeySetsContainer *Keys; }; #endif /* KEYSETSCONTAINERUNITTEST_HPP_ */