TestCodebookRandomForest.h 488 B

1234567891011121314151617181920212223242526
  1. #ifndef _TESTCODEBOOKRANDOMFOREST_H
  2. #define _TESTCODEBOOKRANDOMFOREST_H
  3. #include <cppunit/extensions/HelperMacros.h>
  4. /**
  5. * CppUnit-Testcase.
  6. */
  7. class TestCodebookRandomForest : public CppUnit::TestFixture {
  8. CPPUNIT_TEST_SUITE( TestCodebookRandomForest );
  9. CPPUNIT_TEST(testCodebookRandomForest);
  10. CPPUNIT_TEST_SUITE_END();
  11. private:
  12. public:
  13. void setUp();
  14. void tearDown();
  15. void testCodebookRandomForest();
  16. };
  17. #endif // _TESTCODEBOOKRANDOMFOREST_H