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