TestFeatureMatrixT.h 680 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef _TESTFEATUREMATRIXT_H
  2. #define _TESTFEATUREMATRIXT_H
  3. #include <cppunit/extensions/HelperMacros.h>
  4. #include <gp-hik-core/FeatureMatrixT.h>
  5. /**
  6. * CppUnit-Testcase.
  7. * @brief CppUnit-Testcase to verify that all important methods of the Feature Matrix perform as desired
  8. */
  9. class TestFeatureMatrixT : public CppUnit::TestFixture {
  10. CPPUNIT_TEST_SUITE( TestFeatureMatrixT );
  11. CPPUNIT_TEST(testSetup);
  12. CPPUNIT_TEST(testMatlabIO);
  13. CPPUNIT_TEST_SUITE_END();
  14. private:
  15. public:
  16. void setUp();
  17. void tearDown();
  18. /**
  19. * Constructor / Destructor testing
  20. */
  21. void testSetup();
  22. void testMatlabIO();
  23. };
  24. #endif // _TESTFEATUREMATRIXT_H