| 8458 | } |
| 8459 | |
| 8460 | virtual void sectionEnded( SectionStats const& sectionStats ) CATCH_OVERRIDE { |
| 8461 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
| 8462 | it != itEnd; |
| 8463 | ++it ) |
| 8464 | (*it)->sectionEnded( sectionStats ); |
| 8465 | } |
| 8466 | |
| 8467 | virtual void testCaseEnded( TestCaseStats const& testCaseStats ) CATCH_OVERRIDE { |
| 8468 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
nothing calls this directly
no test coverage detected