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