| 13762 | void JunitReporter::noMatchingTestCases( std::string const& /*spec*/ ) {} |
| 13763 | |
| 13764 | void JunitReporter::testRunStarting( TestRunInfo const& runInfo ) { |
| 13765 | CumulativeReporterBase::testRunStarting( runInfo ); |
| 13766 | xml.startElement( "testsuites" ); |
| 13767 | if( m_config->rngSeed() != 0 ) { |
| 13768 | xml.startElement( "properties" ); |
| 13769 | xml.scopedElement( "property" ) |
| 13770 | .writeAttribute( "name", "random-seed" ) |
| 13771 | .writeAttribute( "value", m_config->rngSeed() ); |
| 13772 | xml.endElement(); |
| 13773 | } |
| 13774 | } |
| 13775 | |
| 13776 | void JunitReporter::testGroupStarting( GroupInfo const& groupInfo ) { |
| 13777 | suiteTimer.start(); |
no test coverage detected