| 6438 | m_reporter->benchmarkPreparing( name ); |
| 6439 | } |
| 6440 | void RunContext::benchmarkStarting( BenchmarkInfo const& info ) { |
| 6441 | auto _ = scopedDeactivate( *m_outputRedirect ); |
| 6442 | m_reporter->benchmarkStarting( info ); |
| 6443 | } |
| 6444 | void RunContext::benchmarkEnded( BenchmarkStats<> const& stats ) { |
| 6445 | auto _ = scopedDeactivate( *m_outputRedirect ); |
| 6446 | m_reporter->benchmarkEnded( stats ); |
nothing calls this directly
no test coverage detected