/* * AssertUnitTest.hpp * * Created on: Feb 3, 2011 * Author: heber */ #ifndef ASSERTTEST_HPP_ #define ASSERTTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include /********************************************** Test classes **************************************/ class AssertTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( AssertTest) ; CPPUNIT_TEST ( ThrowTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void ThrowTest(); }; #endif /* ASSERTTEST_HPP_ */