| 9321 | } |
| 9322 | |
| 9323 | virtual void testRunStarting( TestRunInfo const& testRunInfo ) CATCH_OVERRIDE { |
| 9324 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
| 9325 | it != itEnd; |
| 9326 | ++it ) |
| 9327 | (*it)->testRunStarting( testRunInfo ); |
| 9328 | } |
| 9329 | |
| 9330 | virtual void testGroupStarting( GroupInfo const& groupInfo ) CATCH_OVERRIDE { |
| 9331 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
nothing calls this directly
no test coverage detected