| 9908 | } |
| 9909 | |
| 9910 | virtual void sectionStarting( SectionInfo const& sectionInfo ) CATCH_OVERRIDE { |
| 9911 | StreamingReporterBase::sectionStarting( sectionInfo ); |
| 9912 | if( m_sectionDepth++ > 0 ) { |
| 9913 | m_xml.startElement( "Section" ) |
| 9914 | .writeAttribute( "name", trim( sectionInfo.name ) ) |
| 9915 | .writeAttribute( "description", sectionInfo.description ); |
| 9916 | writeSourceInfo( sectionInfo.lineInfo ); |
| 9917 | m_xml.ensureTagClosed(); |
| 9918 | } |
| 9919 | } |
| 9920 | |
| 9921 | virtual void assertionStarting( AssertionInfo const& ) CATCH_OVERRIDE { } |
| 9922 |
nothing calls this directly
no test coverage detected