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