/* * ParserPcpUnitTest.hpp * * Created on: Mar 3, 2010 * Author: metzler */ #ifndef PARSERPCPUNITTEST_HPP_ #define PARSERPCPUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Parser/PcpParser.hpp" #include #include class ParserPcpUnitTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( ParserPcpUnitTest ) ; CPPUNIT_TEST ( readwritePcpTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void readwritePcpTest(); private: FormatParser *parser; }; #endif /* PARSERPCPUNITTEST_HPP_ */