| 16885 | |
| 16886 | namespace Catch { |
| 16887 | XmlReporter::XmlReporter( ReporterConfig const& _config ) |
| 16888 | : StreamingReporterBase( _config ), |
| 16889 | m_xml(_config.stream()) |
| 16890 | { |
| 16891 | m_reporterPrefs.shouldRedirectStdOut = true; |
| 16892 | m_reporterPrefs.shouldReportAllAssertions = true; |
| 16893 | } |
| 16894 | |
| 16895 | XmlReporter::~XmlReporter() = default; |
| 16896 |
nothing calls this directly
no outgoing calls
no test coverage detected