| 17248 | |
| 17249 | namespace Catch { |
| 17250 | XmlReporter::XmlReporter( ReporterConfig const& _config ) |
| 17251 | : StreamingReporterBase( _config ), |
| 17252 | m_xml(_config.stream()) |
| 17253 | { |
| 17254 | m_reporterPrefs.shouldRedirectStdOut = true; |
| 17255 | m_reporterPrefs.shouldReportAllAssertions = true; |
| 17256 | } |
| 17257 | |
| 17258 | XmlReporter::~XmlReporter() = default; |
| 17259 |
nothing calls this directly
no outgoing calls
no test coverage detected