| 12521 | |
| 12522 | namespace Catch { |
| 12523 | XmlReporter::XmlReporter( ReporterConfig const& _config ) |
| 12524 | : StreamingReporterBase( _config ), |
| 12525 | m_xml(_config.stream()) |
| 12526 | { |
| 12527 | m_reporterPrefs.shouldRedirectStdOut = true; |
| 12528 | } |
| 12529 | |
| 12530 | XmlReporter::~XmlReporter() = default; |
| 12531 |
nothing calls this directly
no outgoing calls
no test coverage detected