TestLinearSolve.h 643 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * @file TestLinearSolve.h
  3. * @brief TestLinearSolve
  4. * @author Erik Rodner
  5. * @date 21.12.2011
  6. */
  7. #ifndef OBJREC_TestLinearSolve_H
  8. #define OBJREC_TestLinearSolve_H
  9. #include <cppunit/extensions/HelperMacros.h>
  10. /**
  11. * CppUnit-Testcase.
  12. * Tests for Iterative Linear Solvers
  13. */
  14. class TestLinearSolve : public CppUnit::TestFixture
  15. {
  16. CPPUNIT_TEST_SUITE( TestLinearSolve );
  17. CPPUNIT_TEST( TestLinearSolveComputation );
  18. CPPUNIT_TEST_SUITE_END();
  19. private:
  20. public:
  21. void setUp();
  22. void tearDown();
  23. void TestLinearSolveComputation();
  24. };
  25. #endif // _TestLinearSolve_H_