Lines Matching +full:- +full:- +full:junit +full:- +full:xml
10 To specify a reporter use [`-r` or `--reporter`](command-line.md#choosing-a-reporter-to-use), follo…
13 -r xml
20 * `compact` similar to `console` but optimised for minimal output - each entry on one line
21 …junit` writes xml that corresponds to Ant's [junitreport](http://help.catchsoftware.com/display/ET…
22 Because of the way the junit format is structured the run must complete before anything is written.
23 * `xml` writes an xml format tailored to Catch. Unlike `junit` this is a streaming format so result…
26 Do this in one source file - the same one you have `CATCH_CONFIG_MAIN` or `CATCH_CONFIG_RUNNER`.
29 …amCity build to see results as they happen ([code example](../examples/207-Rpt-TeamCityReporter.cp…
31 …(https://www.gnu.org/software/automake/manual/html_node/Log-files-generation-and-test-results-reco…
33 You see what reporters are available from the command line by running with `--list-reporters`.
35 …to stdout, but can be redirected to a file with [`-o` or `--out`](command-line.md#sending-output-t…
41 …e determined you shouldn't have too much trouble working it out from the existing implementations -
44 ---