| 9335 | } |
| 9336 | |
| 9337 | virtual void testCaseStarting( TestCaseInfo const& testInfo ) CATCH_OVERRIDE { |
| 9338 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
| 9339 | it != itEnd; |
| 9340 | ++it ) |
| 9341 | (*it)->testCaseStarting( testInfo ); |
| 9342 | } |
| 9343 | |
| 9344 | virtual void sectionStarting( SectionInfo const& sectionInfo ) CATCH_OVERRIDE { |
| 9345 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
nothing calls this directly
no test coverage detected