/* * SummationUnitTest.hpp * * Created on: Jun 30, 2012 * Author: heber */ #ifndef SUMMATIONUNITTEST_HPP_ #define SUMMATIONUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include "Fragmentation/Summation/IndexSetContainer.hpp" #include "Fragmentation/Summation/SubsetMap.hpp" /********************************************** Test classes **************************************/ class SummationTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( SummationTest) ; CPPUNIT_TEST ( operator_staticTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void operator_staticTest(); private: SubsetMap::ptr subsetmap; IndexSetContainer::ptr container; }; #endif /* SUMMATIONUNITTEST_HPP_ */