Lines Matching +full:- +full:- +full:junit +full:- +full:xml

5 [Continuous Integration systems](#continuous-integration-systems)<br>
6 [Other reporters](#other-reporters)<br>
7 [Low-level tools](#low-level-tools)<br>
11 Build Systems may refer to low-level tools, like CMake, or larger systems that run on servers, like…
15 …h three reporters that should cover the majority of build servers out there - although adding more…
17 … in (XML and JUnit) and the third (TeamCity) is included as a separate header. It's possible that …
19 ### XML Reporter
20 ```-r xml```
22 The XML Reporter writes in an XML format that is specific to Catch.
24 … unusual features, such as nested sections) and is a fully streaming format - that is it writes ou…
26 …used as input to an XSLT transformation that could convert it to, say, HTML - although this loses …
28 ### JUnit Reporter
29 ```-r junit```
31 The JUnit Reporter writes in an XML format that mimics the JUnit ANT schema.
33 The advantage of this format is that the JUnit Ant schema is widely understood by most build server…
35JUnit works - and there is a significant mismatch with how Catch works. Additionally the format is…
38 Other reporters are not part of the single-header distribution and need
52 ```-r teamcity```
56 …eporter to use with it - but it is completely unsuitable for any other purpose. It is a streaming …
59 ```-r automake```
61 …re/automake/manual/html_node/Log-files-generation-and-test-results-recording.html#Log-files-genera…
64 ```-r tap```
68 ## Low-level tools
72 …support for being included in precompiled headers, but because of its single-header nature it does…
86 ### pkg-config
88 Catch2 provides a rudimentary pkg-config integration, by registering itself
90 can use `pkg-config` to get its include path: `pkg-config --cflags catch2`.
103 integration with CMake has been moved to its own page.](cmake-integration.md#top)
106 ---