Line data Source code
1 : /*
2 : * File: TestCGSolver.h
3 : * Author: chung
4 : *
5 : * Created on Nov 16, 2015, 6:41:56 PM
6 : */
7 :
8 : #ifndef TESTCGSOLVER_H
9 : #define TESTCGSOLVER_H
10 :
11 : #define FORBES_TEST_UTILS
12 :
13 : #include "ForBES.h"
14 :
15 : #include <cppunit/extensions/HelperMacros.h>
16 :
17 : class TestCGSolver : public CPPUNIT_NS::TestFixture {
18 2 : CPPUNIT_TEST_SUITE(TestCGSolver);
19 :
20 1 : CPPUNIT_TEST(testSolve);
21 1 : CPPUNIT_TEST(testSolve2);
22 1 : CPPUNIT_TEST(testSolveNoPredcond);
23 :
24 5 : CPPUNIT_TEST_SUITE_END();
25 :
26 : public:
27 : TestCGSolver();
28 : virtual ~TestCGSolver();
29 : void setUp();
30 : void tearDown();
31 :
32 : private:
33 : void testSolve();
34 : void testSolve2();
35 : void testSolveNoPredcond();
36 :
37 : };
38 :
39 : #endif /* TESTCGSOLVER_H */
40 :
|