/* * ContinuousParameterUnitTest.hpp * * Created on: Sep 30, 2011 * Author: heber */ #ifndef CONTINUOUSPARAMETERUNITTEST_HPP_ #define CONTINUOUSPARAMETERUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include template struct range; class ContinuousParameterTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( ContinuousParameterTest ) ; CPPUNIT_TEST ( comparatorTest ); CPPUNIT_TEST ( cloneTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void comparatorTest(); void cloneTest(); private: range *ValidRange; }; #endif /* CONTINUOUSPARAMETERUNITTEST_HPP_ */