/* * ContinuousParameterTest.hpp * * Created on: Sep 30, 2011 * Author: heber */ #ifndef CONTINUOUSPARAMETERTEST_HPP_ #define CONTINUOUSPARAMETERTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include #include "LinearAlgebra/Vector.hpp" template struct range; class Vector; 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 *ValidIntRange; range *ValidVectorRange; }; #endif /* CONTINUOUSPARAMETERTEST_HPP_ */