source: test/unit_test/solver_test.hpp@ d24c2f

Last change on this file since d24c2f was 48b662, checked in by Olaf Lenz <olenz@…>, 14 years ago

Moved files in scafacos_fcs one level up.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@847 5161e1c8-67bf-11de-9fd5-51895aff932f

  • Property mode set to 100644
File size: 693 bytes
Line 
1/*
2 * solver_test.hpp
3 *
4 * Created on: 21.07.2010
5 * Author: Julian Iseringhausen
6 */
7
8#ifndef SOLVER_TEST_HPP_
9#define SOLVER_TEST_HPP_
10
11#include <cppunit/TestFixture.h>
12#include <cppunit/extensions/HelperMacros.h>
13
14namespace VMG
15{
16class Solver;
17}
18
19namespace VMGTests
20{
21
22class SolverTestSuite : public CppUnit::TestFixture
23{
24 CPPUNIT_TEST_SUITE(SolverTestSuite);
25 CPPUNIT_TEST(DGESVTest);
26 CPPUNIT_TEST(DSYSVTest);
27 CPPUNIT_TEST(GivensTest);
28 CPPUNIT_TEST_SUITE_END();
29
30public:
31 void setUp(void);
32 void tearDown(void);
33
34protected:
35 void DGESVTest();
36 void DSYSVTest();
37 void GivensTest();
38
39private:
40 VMG::Solver *dgesv, *dsysv, *givens;
41};
42
43}
44
45#endif /* SOLVER_TEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.