/* * IndexSetUnitTest.hpp * * Created on: Jun 25, 2012 * Author: heber */ #ifndef INDEXSETUNITTEST_HPP_ #define INDEXSETUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include class IndexSet; /********************************************** Test classes **************************************/ class IndexSetTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( IndexSetTest) ; CPPUNIT_TEST ( contains_singleIndex_Test ); CPPUNIT_TEST ( contains_IndexSet_Test ); CPPUNIT_TEST ( comparatorTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void contains_singleIndex_Test(); void contains_IndexSet_Test(); void comparatorTest(); private: IndexSet *indices; }; #endif /* INDEXSETUNITTEST_HPP_ */