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