TestLUDecomposition.h 635 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * @file TestLUDecomposition.h
  3. * @brief TestLUDecomposition
  4. * @author Alexander Freytag
  5. * @date 22-10-2012
  6. */
  7. #ifndef NICE_TESTLINEARSOLVE
  8. #define NICE_TESTLINEARSOLVE
  9. #include <cppunit/extensions/HelperMacros.h>
  10. /**
  11. * CppUnit-Testcase.
  12. * Tests for LU Decomposition
  13. */
  14. class TestLUDecomposition : public CppUnit::TestFixture
  15. {
  16. CPPUNIT_TEST_SUITE( TestLUDecomposition );
  17. CPPUNIT_TEST( testLUDecomposition );
  18. CPPUNIT_TEST_SUITE_END();
  19. private:
  20. public:
  21. void setUp();
  22. void tearDown();
  23. void testLUDecomposition();
  24. };
  25. #endif // NICE_TESTLINEARSOLVE