The return value indicates if the messages buffer should be cleared:
| 9186 | |
| 9187 | // The return value indicates if the messages buffer should be cleared: |
| 9188 | virtual bool assertionEnded( AssertionStats const& assertionStats ) CATCH_OVERRIDE { |
| 9189 | bool clearBuffer = false; |
| 9190 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
| 9191 | it != itEnd; |
| 9192 | ++it ) |
| 9193 | clearBuffer |= (*it)->assertionEnded( assertionStats ); |
| 9194 | return clearBuffer; |
| 9195 | } |
| 9196 | |
| 9197 | virtual void sectionEnded( SectionStats const& sectionStats ) CATCH_OVERRIDE { |
| 9198 | for( Reporters::const_iterator it = m_reporters.begin(), itEnd = m_reporters.end(); |
nothing calls this directly
no test coverage detected