-
Notifications
You must be signed in to change notification settings - Fork 0
/
evilunit_selftest_number_recording.i
200 lines (177 loc) · 5.18 KB
/
evilunit_selftest_number_recording.i
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
* This file is part of EvilUnit.
*
* EvilUnit is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* EvilUnit is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with EvilUnit. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Copyright Jon Chesterfield. All rights reserved.
*/
#include "EvilUnit.h"
static MODULE(count_empty_target)
{
(void)evilunit_internal_state;
}
static MODULE(count_checks_passing_target)
{
CHECK(0 == 0);
TEST("first")
{
CHECK(1 == 1);
}
TEST("second")
{
CHECK(2 == 2);
CHECK(3 == 3);
}
CHECK(4 == 4);
}
static MODULE(count_checks_failing_target)
{
CHECK(0 != 0);
TEST("first")
{
CHECK(1 != 1);
}
TEST("second")
{
CHECK(2 != 2);
CHECK(3 != 3);
}
CHECK(4 != 4);
}
static MODULE(count_checks_mixture_target)
{
CHECK(0 == 0);
CHECK(0 != 0);
TEST("first")
{
CHECK(1 == 1);
CHECK(1 != 1);
}
TEST("second")
{
CHECK(2 == 2);
CHECK(2 != 2);
CHECK(3 == 3);
CHECK(3 != 3);
}
CHECK(4 == 4);
CHECK(4 != 4);
}
static MODULE(number_recording_specific_test)
{
evilunit_node_type passing = EVILUNIT_MODULE_MANGLE(count_checks_passing_target);
evilunit_node_type failing = EVILUNIT_MODULE_MANGLE(count_checks_failing_target);
evilunit_node_type mixture = EVILUNIT_MODULE_MANGLE(count_checks_mixture_target);
struct evilunit_test_state expect = evilunit_make_test_state("");
struct evilunit_test_state result = evilunit_make_test_state("");
TEST("no checks in empty module")
{
expect.number_success = 0;
expect.number_failure = 0;
result = evilunit_execute_specific_test(EVILUNIT_MODULE_MANGLE(count_empty_target),0);
}
TEST("two checks in module-only passing case")
{
expect.number_success = 2;
expect.number_failure = 0;
result = evilunit_execute_specific_test(passing,0);
}
TEST("two checks in module-only failing case")
{
expect.number_success = 0;
expect.number_failure = 2;
result = evilunit_execute_specific_test(failing,0);
}
TEST("four checks in module-only mixture case")
{
expect.number_success = 2;
expect.number_failure = 2;
result = evilunit_execute_specific_test(mixture,0);
}
TEST("three checks in first test passing case")
{
expect.number_success = 3;
expect.number_failure = 0;
result = evilunit_execute_specific_test(passing,1);
}
TEST("three checks in first test failing case")
{
expect.number_success = 0;
expect.number_failure = 3;
result = evilunit_execute_specific_test(failing,1);
}
TEST("six checks in first test mixture case")
{
expect.number_success = 3;
expect.number_failure = 3;
result = evilunit_execute_specific_test(mixture,1);
}
TEST("four checks in second test passing case")
{
expect.number_success = 4;
expect.number_failure = 0;
result = evilunit_execute_specific_test(passing,2);
}
TEST("four checks in second test failing case")
{
expect.number_success = 0;
expect.number_failure = 4;
result = evilunit_execute_specific_test(failing,2);
}
TEST("eight checks in second test mixture case")
{
expect.number_success = 4;
expect.number_failure = 4;
result = evilunit_execute_specific_test(mixture,2);
}
CHECK(expect.number_success == result.number_success);
CHECK(expect.number_failure == result.number_failure);
}
static MODULE(number_recording_execute_all_tests)
{
struct evilunit_test_state expect = evilunit_make_test_state("");
struct evilunit_test_state result = evilunit_make_test_state("");
TEST("no checks in empty module")
{
expect.number_success = 0;
expect.number_failure = 0;
result = evilunit_execute_all_tests(EVILUNIT_MODULE_MANGLE(count_empty_target));
}
TEST("nine checks in passing case")
{
expect.number_success = 9;
expect.number_failure = 0;
result = evilunit_execute_all_tests(EVILUNIT_MODULE_MANGLE(count_checks_passing_target));
}
TEST("nine checks in failing case")
{
expect.number_success = 0;
expect.number_failure = 9;
result = evilunit_execute_all_tests(EVILUNIT_MODULE_MANGLE(count_checks_failing_target));
}
TEST("eighteen checks in mixture case")
{
expect.number_success = 9;
expect.number_failure = 9;
result = evilunit_execute_all_tests(EVILUNIT_MODULE_MANGLE(count_checks_mixture_target));
}
CHECK(expect.number_success == result.number_success);
CHECK(expect.number_failure == result.number_failure);
}
static MODULE(evilunit_selftest_number_recording)
{
DEPENDS(number_recording_specific_test);
DEPENDS(number_recording_execute_all_tests);
}