| 9342 | } |
| 9343 | |
| 9344 | virtual void sectionStarting( SectionInfo const& sectionInfo ) CATCH_OVERRIDE { |
| 9345 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
| 9346 | it != itEnd; |
| 9347 | ++it ) |
| 9348 | (*it)->sectionStarting( sectionInfo ); |
| 9349 | } |
| 9350 | |
| 9351 | virtual void assertionStarting( AssertionInfo const& assertionInfo ) CATCH_OVERRIDE { |
| 9352 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
nothing calls this directly
no test coverage detected