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