Lines Matching refs:sectionNode
8682 SectionNode& sectionNode = *m_sectionStack.back(); in assertionEnded() local
8683 sectionNode.assertions.push_back( assertionStats ); in assertionEnded()
9366 SectionNode const& sectionNode ) { in writeSection() argument
9367 std::string name = trim( sectionNode.stats.sectionInfo.name ); in writeSection()
9371 if( !sectionNode.assertions.empty() || in writeSection()
9372 !sectionNode.stdOut.empty() || in writeSection()
9373 !sectionNode.stdErr.empty() ) { in writeSection()
9383 … xml.writeAttribute( "time", Catch::toString( sectionNode.stats.durationInSeconds ) ); in writeSection()
9385 writeAssertions( sectionNode ); in writeSection()
9387 if( !sectionNode.stdOut.empty() ) in writeSection()
9388 … xml.scopedElement( "system-out" ).writeText( trim( sectionNode.stdOut ), false ); in writeSection()
9389 if( !sectionNode.stdErr.empty() ) in writeSection()
9390 … xml.scopedElement( "system-err" ).writeText( trim( sectionNode.stdErr ), false ); in writeSection()
9393 it = sectionNode.childSections.begin(), in writeSection()
9394 itEnd = sectionNode.childSections.end(); in writeSection()
9403 void writeAssertions( SectionNode const& sectionNode ) { in writeAssertions() argument
9405 it = sectionNode.assertions.begin(), itEnd = sectionNode.assertions.end(); in writeAssertions()