| 9878 | } |
| 9879 | |
| 9880 | virtual void testRunStarting( TestRunInfo const& testInfo ) CATCH_OVERRIDE { |
| 9881 | StreamingReporterBase::testRunStarting( testInfo ); |
| 9882 | std::string stylesheetRef = getStylesheetRef(); |
| 9883 | if( !stylesheetRef.empty() ) |
| 9884 | m_xml.writeStylesheetRef( stylesheetRef ); |
| 9885 | m_xml.startElement( "Catch" ); |
| 9886 | if( !m_config->name().empty() ) |
| 9887 | m_xml.writeAttribute( "name", m_config->name() ); |
| 9888 | } |
| 9889 | |
| 9890 | virtual void testGroupStarting( GroupInfo const& groupInfo ) CATCH_OVERRIDE { |
| 9891 | StreamingReporterBase::testGroupStarting( groupInfo ); |
nothing calls this directly
no test coverage detected