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