| 17250 | |
| 17251 | namespace Catch { |
| 17252 | XmlReporter::XmlReporter( ReporterConfig const& _config ) |
| 17253 | : StreamingReporterBase( _config ), |
| 17254 | m_xml(_config.stream()) |
| 17255 | { |
| 17256 | m_reporterPrefs.shouldRedirectStdOut = true; |
| 17257 | m_reporterPrefs.shouldReportAllAssertions = true; |
| 17258 | } |
| 17259 | |
| 17260 | XmlReporter::~XmlReporter() = default; |
| 17261 |