| 9373 | } |
| 9374 | |
| 9375 | virtual void testCaseEnded( TestCaseStats const& testCaseStats ) CATCH_OVERRIDE { |
| 9376 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
| 9377 | it != itEnd; |
| 9378 | ++it ) |
| 9379 | (*it)->testCaseEnded( testCaseStats ); |
| 9380 | } |
| 9381 | |
| 9382 | virtual void testGroupEnded( TestGroupStats const& testGroupStats ) CATCH_OVERRIDE { |
| 9383 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
nothing calls this directly
no test coverage detected