/* * ParameterStorageUnitTest.hpp * * Created on: Sep 30, 2011 * Author: heber */ #ifndef PARAMETERSTORAGEUNITTEST_HPP_ #define PARAMETERSTORAGEUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include "Parser/Parameters/ParameterStorage.hpp" /********************************************** Test classes **************************************/ class ParameterStorageTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( ParameterStorageTest) ; CPPUNIT_TEST ( instanceTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void instanceTest(); private: ParameterStorage storage; }; #endif /* PARAMETERSTORAGEUNITTEST_HPP_ */