TestGPHIKPersistent.h 674 B

123456789101112131415161718192021222324252627282930
  1. #ifndef _TESTGPHIKPERSISTENT_H
  2. #define _TESTGPHIKPERSISTENT_H
  3. #include <cppunit/extensions/HelperMacros.h>
  4. #include <gp-hik-core/GPHIKClassifier.h>
  5. /**
  6. * CppUnit-Testcase.
  7. * @brief CppUnit-Testcase to verify that GPHIKClassifier methods herited from Persistent (store and restore) work as desired.
  8. * @author Alexander Freytag
  9. * @date 21-12-2013
  10. */
  11. class TestGPHIKPersistent : public CppUnit::TestFixture {
  12. CPPUNIT_TEST_SUITE( TestGPHIKPersistent );
  13. CPPUNIT_TEST(testPersistentMethods);
  14. CPPUNIT_TEST_SUITE_END();
  15. private:
  16. public:
  17. void setUp();
  18. void tearDown();
  19. void testPersistentMethods();
  20. };
  21. #endif // _TESTGPHIKPERSISTENT_H