12345678910111213141516171819202122232425262728293031 |
- #ifndef _TESTGENERICLOCALFEATURESELECTIONPERSISTENT_H
- #define _TESTGENERICLOCALFEATURESELECTIONPERSISTENT_H
- #include <cppunit/extensions/HelperMacros.h>
- #include <vislearning/features/localfeatures/GenericLocalFeatureSelection.h>
- class TestGenericLocalFeatureSelectionPersistent : public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE( TestGenericLocalFeatureSelectionPersistent );
- CPPUNIT_TEST(testPersistentMethods);
-
- CPPUNIT_TEST_SUITE_END();
-
- private:
-
- public:
- void setUp();
- void tearDown();
- void testPersistentMethods();
- };
- #endif
|