TestGenericLocalFeatureSelectionPersistent.h 859 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef _TESTGENERICLOCALFEATURESELECTIONPERSISTENT_H
  2. #define _TESTGENERICLOCALFEATURESELECTIONPERSISTENT_H
  3. #include <cppunit/extensions/HelperMacros.h>
  4. #include <vislearning/features/localfeatures/GenericLocalFeatureSelection.h>
  5. /**
  6. * CppUnit-Testcase.
  7. * @brief CppUnit-Testcase to create a LocalFeatureRepresentation object via GenericLocalFeatureSelection, to store it, and to restore it again.
  8. * @author Alexander Freytag
  9. * @date 12-02-2014 ( dd-mm-yyyy )
  10. */
  11. class TestGenericLocalFeatureSelectionPersistent : public CppUnit::TestFixture {
  12. CPPUNIT_TEST_SUITE( TestGenericLocalFeatureSelectionPersistent );
  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 // _TESTGENERICLOCALFEATURESELECTIONPERSISTENT_H