/* * FunctionArgumentUnitTest.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 FunctionArgumentTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( FunctionArgumentTest) ; CPPUNIT_TEST ( IndexComparatorTest ); CPPUNIT_TEST ( DistanceComparatorTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void IndexComparatorTest(); void DistanceComparatorTest(); private: }; #endif /* FUNCTIONARGUMENTUNITTEST_HPP_ */