TestGPHIKOnlineLearnable.h 744 B

123456789101112131415161718192021222324252627282930
  1. #ifndef _TESTGPHIKONLINELEARNABLE_H
  2. #define _TESTGPHIKONLINELEARNABLE_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 GPHIKClassifierIL methods herited from OnlineLearnable (addExample and addMultipleExamples) work as desired.
  8. * @author Alexander Freytag
  9. * @date 03-11-2014 (dd-mm-yyyy)
  10. */
  11. class TestGPHIKOnlineLearnable : public CppUnit::TestFixture {
  12. CPPUNIT_TEST_SUITE( TestGPHIKOnlineLearnable );
  13. CPPUNIT_TEST(testOnlineLearningMethods);
  14. CPPUNIT_TEST_SUITE_END();
  15. private:
  16. public:
  17. void setUp();
  18. void tearDown();
  19. void testOnlineLearningMethods();
  20. };
  21. #endif // _TESTGPHIKONLINELEARNABLE_H