| 17217 | |
| 17218 | namespace Catch { |
| 17219 | XmlReporter::XmlReporter( ReporterConfig const& _config ) |
| 17220 | : StreamingReporterBase( _config ), |
| 17221 | m_xml(_config.stream()) |
| 17222 | { |
| 17223 | m_reporterPrefs.shouldRedirectStdOut = true; |
| 17224 | m_reporterPrefs.shouldReportAllAssertions = true; |
| 17225 | } |
| 17226 | |
| 17227 | XmlReporter::~XmlReporter() = default; |
| 17228 |
nothing calls this directly
no outgoing calls
no test coverage detected