12345678910111213141516171819202122232425262728293031 |
- #ifndef _TESTGENERICCLUSTERALGOSELECTIONPERSISTENT_H
- #define _TESTGENERICCLUSTERALGOSELECTIONPERSISTENT_H
- #include <cppunit/extensions/HelperMacros.h>
- #include <vislearning/math/cluster/GenericClusterAlgorithmSelection.h>
- class TestGenericClusterAlgoSelectionPersistent : public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE( TestGenericClusterAlgoSelectionPersistent );
- CPPUNIT_TEST(testPersistentMethods);
-
- CPPUNIT_TEST_SUITE_END();
-
- private:
-
- public:
- void setUp();
- void tearDown();
- void testPersistentMethods();
- };
- #endif
|