cppunitexTest.h 409 B

12345678910111213141516171819202122232425
  1. #ifndef CPPUNITEXTEST_H
  2. #define CPPUNITEXTEST_H
  3. #include <cppunit/extensions/HelperMacros.h>
  4. /**
  5. * CppUnit-Testcase.
  6. * Tests for FileName.
  7. */
  8. class CppUnitExTest : public CppUnit::TestFixture {
  9. CPPUNIT_TEST_SUITE( CppUnitExTest );
  10. CPPUNIT_TEST( testNotNaN );
  11. CPPUNIT_TEST_SUITE_END();
  12. private:
  13. public:
  14. void setUp();
  15. void tearDown();
  16. void testNotNaN();
  17. };
  18. #endif // CPPUNITEXTEST_H