-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestLine.h
More file actions
73 lines (65 loc) · 1.55 KB
/
Copy pathtestLine.h
File metadata and controls
73 lines (65 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
62
63
64
65
66
67
68
69
70
71
72
73
#if !defined(TEST_LINE)
#define TEST_LINE
#include "cppunit/extensions/HelperMacros.h"
/*
* A test case to test LogEngine Line class
*
*/
class LineTest : public CPPUNIT_NS::TestFixture
{
CPPUNIT_TEST_SUITE( LineTest );
CPPUNIT_TEST( testLine1 );
CPPUNIT_TEST( testLine2 );
CPPUNIT_TEST( testLine3 );
CPPUNIT_TEST( testLine4 );
CPPUNIT_TEST( testLine5 );
CPPUNIT_TEST( testLine6 );
CPPUNIT_TEST(testLine6_1);
CPPUNIT_TEST( testLine7 );
CPPUNIT_TEST( testLine8 );
CPPUNIT_TEST( testLine9 );
CPPUNIT_TEST( testLine10 );
CPPUNIT_TEST( testLine11 );
CPPUNIT_TEST( testLine12 );
CPPUNIT_TEST( testLine13 );
CPPUNIT_TEST( testLine14 );
CPPUNIT_TEST( testLine15 );
CPPUNIT_TEST(testLine16);
CPPUNIT_TEST(testLine17);
CPPUNIT_TEST(testLine18);
CPPUNIT_TEST(testLine19);
CPPUNIT_TEST(testLine20);
CPPUNIT_TEST(testLine21);
CPPUNIT_TEST(testLine22);
CPPUNIT_TEST(testLine23);
CPPUNIT_TEST_SUITE_END();
public:
struct tm FixedTime;
void setUp();
void tearDown();
void testLine1();
void testLine2();
void testLine3();
void testLine4();
void testLine5();
void testLine6();
void testLine6_1();
void testLine7();
void testLine8();
void testLine9();
void testLine10();
void testLine11();
void testLine12();
void testLine13();
void testLine14();
void testLine15();
void testLine16();
void testLine17();
void testLine18();
void testLine19();
void testLine20();
void testLine21();
void testLine22();
void testLine23();
};
#endif //TEST_LINE