/* * 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 ( gatherAllSymmetricDistancesTest ); CPPUNIT_TEST ( gatherAllSymmetricDistances_edgesTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void gatherAllSymmetricDistancesTest(); void gatherAllSymmetricDistances_edgesTest(); private: }; #endif /* FUNCTIONARGUMENTUNITTEST_HPP_ */