| 9387 | } |
| 9388 | |
| 9389 | virtual void testRunEnded( TestRunStats const& testRunStats ) CATCH_OVERRIDE { |
| 9390 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
| 9391 | it != itEnd; |
| 9392 | ++it ) |
| 9393 | (*it)->testRunEnded( testRunStats ); |
| 9394 | } |
| 9395 | |
| 9396 | virtual void skipTest( TestCaseInfo const& testInfo ) CATCH_OVERRIDE { |
| 9397 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
nothing calls this directly
no test coverage detected