TestSVD.h 554 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * NICE-Core - efficient algebra and computer vision methods
  3. * - libbasicvector - An core/vector/template for new NICE libraries
  4. * See file License for license information.
  5. */
  6. #ifndef _TESTSVD_H
  7. #define _TESTSVD_H
  8. #include <cppunit/extensions/HelperMacros.h>
  9. /**
  10. * CppUnit-Testcase.
  11. * Test template...
  12. */
  13. class TestSVD : public CppUnit::TestFixture {
  14. CPPUNIT_TEST_SUITE( TestSVD );
  15. CPPUNIT_TEST( testSVD );
  16. CPPUNIT_TEST_SUITE_END();
  17. private:
  18. public:
  19. void setUp();
  20. void tearDown();
  21. void testSVD();
  22. };
  23. #endif // _TESTSVD_H