| 8434 | } |
| 8435 | |
| 8436 | virtual void sectionStarting( SectionInfo const& sectionInfo ) CATCH_OVERRIDE { |
| 8437 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
| 8438 | it != itEnd; |
| 8439 | ++it ) |
| 8440 | (*it)->sectionStarting( sectionInfo ); |
| 8441 | } |
| 8442 | |
| 8443 | virtual void assertionStarting( AssertionInfo const& assertionInfo ) CATCH_OVERRIDE { |
| 8444 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
nothing calls this directly
no test coverage detected