/* * MPQCCommandJobUnitTest.hpp * * Created on: Oct 23, 2011 * Author: heber */ #ifndef MPQCCOMMANDJOBUNITTEST_HPP_ #define MPQCCOMMANDJOBUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include class MPQCCommandJob; /********************************************** Test classes **************************************/ class MPQCCommandJobTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( MPQCCommandJobTest) ; CPPUNIT_TEST ( extractStringTest ); CPPUNIT_TEST ( operatorTest ); CPPUNIT_TEST ( serializationTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void extractStringTest(); void operatorTest(); void serializationTest(); private: MPQCCommandJob *job; }; #endif /* MPQCCOMMANDJOBUNITTEST_HPP_ */