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