/* * ExtractorsUnitTest.hpp * * Created on: Oct 16, 2012 * Author: heber */ #ifndef FUNCTIONARGUMENTUNITTEST_HPP_ #define FUNCTIONARGUMENTUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include /********************************************** Test classes **************************************/ class ExtractorsTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( ExtractorsTest) ; CPPUNIT_TEST ( gatherAllDistanceArgumentsTest ); CPPUNIT_TEST ( reorderArgumentsByIncreasingDistanceTest ); CPPUNIT_TEST ( gatherPositionsFromFragmentTest ); CPPUNIT_TEST ( gatherDistancesFromFragmentTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void gatherAllDistanceArgumentsTest(); void reorderArgumentsByIncreasingDistanceTest(); void gatherPositionsFromFragmentTest(); void gatherDistancesFromFragmentTest(); private: }; #endif /* FUNCTIONARGUMENTUNITTEST_HPP_ */