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