TestLFonHSGPersistent.h 822 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef _TESTLFONHSGPERSISTENT_H
  2. #define _TESTLFONHSGPERSISTENT_H
  3. #include <cppunit/extensions/HelperMacros.h>
  4. #include <vislearning/features/localfeatures/LFonHSG.h>
  5. #include <vislearning/features/localfeatures/GenericLFSelection.h>
  6. /**
  7. * CppUnit-Testcase.
  8. * @brief CppUnit-Testcase to create a LFonHSG-Wrapper around an LocalFeature-object. Checks whether this is storable and restorable again.
  9. * @author Alexander Freytag
  10. * @date 12-02-2014 ( dd-mm-yyyy )
  11. */
  12. class TestLFonHSGPersistent : public CppUnit::TestFixture {
  13. CPPUNIT_TEST_SUITE( TestLFonHSGPersistent );
  14. CPPUNIT_TEST(testPersistentMethodsForLFonHSG);
  15. CPPUNIT_TEST_SUITE_END();
  16. private:
  17. public:
  18. void setUp();
  19. void tearDown();
  20. void testPersistentMethodsForLFonHSG();
  21. };
  22. #endif // _TESTLFONHSGPERSISTENT_H