| 9382 | } |
| 9383 | |
| 9384 | void CompactReporter::testRunStarting( TestRunInfo const& ) { |
| 9385 | if ( m_config->testSpec().hasFilters() ) { |
| 9386 | m_stream << m_colour->guardColour( Colour::BrightYellow ) |
| 9387 | << "Filters: " |
| 9388 | << m_config->testSpec() |
| 9389 | << '\n'; |
| 9390 | } |
| 9391 | m_stream << "RNG seed: " << getSeed() << '\n' |
| 9392 | << std::flush; |
| 9393 | } |
| 9394 | |
| 9395 | void CompactReporter::assertionEnded( AssertionStats const& _assertionStats ) { |
| 9396 | AssertionResult const& result = _assertionStats.assertionResult; |
no test coverage detected