Line data Source code
1 : #ifndef TESTFBSPLITTING_H
2 : #define TESTFBSPLITTING_H
3 :
4 : #define FORBES_TEST_UTILS
5 :
6 : #include "ForBES.h"
7 : #include "ForBESUtils.h"
8 :
9 : #include <cppunit/extensions/HelperMacros.h>
10 :
11 : class TestFBSplitting : public CPPUNIT_NS::TestFixture {
12 2 : CPPUNIT_TEST_SUITE(TestFBSplitting);
13 :
14 1 : CPPUNIT_TEST(testBoxQP_small);
15 1 : CPPUNIT_TEST(testLasso_small);
16 1 : CPPUNIT_TEST(testSparseLogReg_small);
17 :
18 5 : CPPUNIT_TEST_SUITE_END();
19 :
20 : public:
21 : TestFBSplitting();
22 : virtual ~TestFBSplitting();
23 : void setUp();
24 : void tearDown();
25 :
26 : private:
27 : void testBoxQP_small();
28 : void testLasso_small();
29 : void testSparseLogReg_small();
30 : };
31 :
32 : #endif /* TESTFBSPLITTING_H */
|