/* * ParserTremolo_ElementKeysUnitTest.hpp * * Created on: Mar 12, 2012 * Author: heber */ #ifndef PARSERTREMOLO_ELEMENTKEYS_UNITTEST_HPP_ #define PARSERTREMOLO_ELEMENTKEYS_UNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Parser/TremoloParser.hpp" #include #include struct ElementKeys; class ParserTremolo_ElementKeysUnitTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( ParserTremolo_ElementKeysUnitTest ) ; CPPUNIT_TEST ( settergetterTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void settergetterTest(); private: ElementKeys *knownTypes; }; #endif /* PARSERTREMOLO_ELEMENTKEYS_UNITTEST_HPP_ */