@@ -222,30 +222,42 @@ logging of the test execution.
222
222
.. code-block :: xml
223
223
224
224
<logging >
225
- <log type =" coverage-html" target =" /tmp/report" lowUpperBound =" 35"
225
+ <log type =" coverage-html" target =" /tmp/report/html " lowUpperBound =" 35"
226
226
highLowerBound =" 70" />
227
- <log type =" coverage-clover" target =" /tmp/coverage.xml" />
228
- <log type =" coverage-php" target =" /tmp/coverage.serialized" />
227
+ <log type =" coverage-xml" target =" tmp/report/xml" />
228
+ <log type =" coverage-clover" target =" /tmp/coverage.clover.xml" />
229
+ <log type =" coverage-crap4j" target =" /tmp/coverage.crap4j.xml" />
230
+ <log type =" coverage-php" target =" /tmp/coverage.serialized.php" />
229
231
<log type =" coverage-text" target =" php://stdout" showUncoveredFiles =" false" />
230
232
<log type =" junit" target =" /tmp/logfile.xml" />
233
+ <log type =" teamcity" target =" /tmp/teamcity.txt" />
231
234
<log type =" testdox-html" target =" /tmp/testdox.html" />
232
235
<log type =" testdox-text" target =" /tmp/testdox.txt" />
236
+ <log type =" testdox-xml" target =" /tmp/testdox.xml" />
233
237
</logging >
234
238
235
239
The XML configuration above corresponds to invoking the TextUI test runner
236
240
with the following options:
237
241
238
242
-
239
243
240
- ``--coverage-html /tmp/report ``
244
+ ``--coverage-html /tmp/report/html ``
241
245
242
246
-
243
247
244
- ``--coverage-clover /tmp/coverage. xml ``
248
+ ``--coverage-xml /tmp/report/ xml ``
245
249
246
250
-
247
251
248
- ``--coverage-php /tmp/coverage.serialized ``
252
+ ``--coverage-clover /tmp/coverage.clover.xml ``
253
+
254
+ -
255
+
256
+ ``--coverage-crap4j /tmp/coverage.crap4j.xml ``
257
+
258
+ -
259
+
260
+ ``--coverage-php /tmp/coverage.serialized.php ``
249
261
250
262
-
251
263
@@ -259,6 +271,10 @@ with the following options:
259
271
260
272
``--log-junit /tmp/logfile.xml ``
261
273
274
+ -
275
+
276
+ ``--log-teamcity /tmp/teamcity.txt ``
277
+
262
278
-
263
279
264
280
``--testdox-html /tmp/testdox.html ``
@@ -267,6 +283,10 @@ with the following options:
267
283
268
284
``--testdox-text /tmp/testdox.txt ``
269
285
286
+ -
287
+
288
+ ``--testdox-xml /tmp/testdox.xml ``
289
+
270
290
The ``lowUpperBound ``, ``highLowerBound ``,
271
291
and ``showUncoveredFiles `` attributes have no equivalent TextUI
272
292
test runner option.
0 commit comments