/* * IndexSetContainerUnitTest.hpp * * Created on: Jul 3, 2012 * Author: heber */ #ifndef INDEXSETCONTAINERUNITTEST_HPP_ #define INDEXSETCONTAINERUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include #include "IndexSet.hpp" #include "IndexSetContainer.hpp" /********************************************** Test classes **************************************/ class IndexSetContainerTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( IndexSetContainerTest) ; CPPUNIT_TEST ( constructorTest ); CPPUNIT_TEST ( comparatorTest ); CPPUNIT_TEST ( insertTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void constructorTest(); void comparatorTest(); void insertTest(); private: IndexSetContainer *SV; std::vector allsets; }; #endif /* INDEXSETCONTAINERUNITTEST_HPP_ */