| 14086 | |
| 14087 | namespace Catch { |
| 14088 | XmlReporter::XmlReporter( ReporterConfig const& _config ) |
| 14089 | : StreamingReporterBase( _config ), |
| 14090 | m_xml(_config.stream()) |
| 14091 | { |
| 14092 | m_reporterPrefs.shouldRedirectStdOut = true; |
| 14093 | m_reporterPrefs.shouldReportAllAssertions = true; |
| 14094 | } |
| 14095 | |
| 14096 | XmlReporter::~XmlReporter() = default; |
| 14097 |
nothing calls this directly
no outgoing calls
no test coverage detected