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