TestFPCGPHIK.h 571 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef _TESTFPCGPHIK_H
  2. #define _TESTFPCGPHIK_H
  3. #include <cppunit/extensions/HelperMacros.h>
  4. /**
  5. * CppUnit-Testcase.
  6. */
  7. class TestFPCGPHIK : public CppUnit::TestFixture {
  8. CPPUNIT_TEST_SUITE( TestFPCGPHIK );
  9. CPPUNIT_TEST(testFPCGPHIK);
  10. CPPUNIT_TEST(testGPHIKVariance);
  11. // CPPUNIT_TEST(testGPHIKIncrementalLearning);
  12. CPPUNIT_TEST_SUITE_END();
  13. private:
  14. public:
  15. void setUp();
  16. void tearDown();
  17. void testFPCGPHIK();
  18. void testGPHIKVariance();
  19. // void testGPHIKIncrementalLearning();
  20. };
  21. #endif // _TESTFPCGPHIK_H