-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestConfigFile.h
More file actions
61 lines (54 loc) · 1.55 KB
/
Copy pathtestConfigFile.h
File metadata and controls
61 lines (54 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#if !defined(TEST_CONFIGFILE)
#define TEST_CONFIGFILE
#include <cppunit/extensions/HelperMacros.h>
/*
* A test case to test LogEngine Properties class
*
*/
class ConfigFileTest : public CPPUNIT_NS::TestFixture
{
CPPUNIT_TEST_SUITE(ConfigFileTest);
CPPUNIT_TEST(testConfigFile01);
CPPUNIT_TEST(testConfigFile02);
CPPUNIT_TEST(testConfigFile03);
CPPUNIT_TEST(testConfigFile1);
CPPUNIT_TEST(testConfigFile2);
CPPUNIT_TEST(testConfigFile3);
CPPUNIT_TEST(testConfigFile4);
CPPUNIT_TEST(testConfigFile5);
CPPUNIT_TEST(testConfigFile6);
CPPUNIT_TEST(testConfigFile7);
CPPUNIT_TEST(testConfigFile8);
CPPUNIT_TEST(testConfigFile9);
CPPUNIT_TEST(testConfigFile10);
CPPUNIT_TEST(testConfigFile11);
CPPUNIT_TEST(testConfigFile12);
CPPUNIT_TEST(testConfigFile13);
CPPUNIT_TEST(testConfigFile14);
CPPUNIT_TEST(testConfigFile20);
CPPUNIT_TEST(testConfigFile21);
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
void tearDown();
void testConfigFile01();
void testConfigFile02();
void testConfigFile03();
void testConfigFile1();
void testConfigFile2();
void testConfigFile3();
void testConfigFile4();
void testConfigFile5();
void testConfigFile6();
void testConfigFile7();
void testConfigFile8();
void testConfigFile9();
void testConfigFile10();
void testConfigFile11();
void testConfigFile12();
void testConfigFile13();
void testConfigFile14();
void testConfigFile20();
void testConfigFile21();
};
#endif //TEST_CONFIGFILE