| 9380 | } |
| 9381 | |
| 9382 | virtual void testGroupEnded( TestGroupStats const& testGroupStats ) CATCH_OVERRIDE { |
| 9383 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
| 9384 | it != itEnd; |
| 9385 | ++it ) |
| 9386 | (*it)->testGroupEnded( testGroupStats ); |
| 9387 | } |
| 9388 | |
| 9389 | virtual void testRunEnded( TestRunStats const& testRunStats ) CATCH_OVERRIDE { |
| 9390 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
nothing calls this directly
no test coverage detected