/* * StringParameterUnitTest.hpp * * Created on: Sep 30, 2011 * Author: heber */ #ifndef STRINGPARAMETERUNITTEST_HPP_ #define STRINGPARAMETERUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include class StringParameterTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( StringParameterTest ) ; CPPUNIT_TEST ( comparatorTest ); CPPUNIT_TEST ( cloneTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void comparatorTest(); void cloneTest(); }; #endif /* STRINGPARAMETERUNITTEST_HPP_ */