/* * ParserMpqcUnitTest.hpp * * Created on: Mar 3, 2010 * Author: metzler */ #ifndef PARSERMPQCUNITTEST_HPP_ #define PARSERMPQCUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include class ParserMpqcUnitTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( ParserMpqcUnitTest ) ; CPPUNIT_TEST ( writeMpqcTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void writeMpqcTest(); }; #endif /* PARSERMPQCUNITTEST_HPP_ */