/* * InfoUnitTest.hpp * * Created on: Nov 25, 2009 * Author: heber */ #ifndef INFOUNITTEST_HPP_ #define INFOUNITTEST_HPP_ #include class info; /********************************************** Test classes **************************************/ class InfoTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( InfoTest) ; CPPUNIT_TEST ( FunctionTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void FunctionTest(); private: }; #endif /* INFOUNITTEST_HPP_ */