Lines Matching refs:sectionNode
5845 SectionNode& sectionNode = *m_sectionStack.back(); in assertionEnded() local
5846 sectionNode.assertions.push_back(assertionStats); in assertionEnded()
6290 SectionNode const& sectionNode);
6292 void writeAssertions(SectionNode const& sectionNode);
16618 SectionNode const& sectionNode ) { in writeSection() argument
16619 std::string name = trim( sectionNode.stats.sectionInfo.name ); in writeSection()
16623 if( !sectionNode.assertions.empty() || in writeSection()
16624 !sectionNode.stdOut.empty() || in writeSection()
16625 !sectionNode.stdErr.empty() ) { in writeSection()
16635 … xml.writeAttribute( "time", ::Catch::Detail::stringify( sectionNode.stats.durationInSeconds ) ); in writeSection()
16637 writeAssertions( sectionNode ); in writeSection()
16639 if( !sectionNode.stdOut.empty() ) in writeSection()
16640 … xml.scopedElement( "system-out" ).writeText( trim( sectionNode.stdOut ), XmlFormatting::Newline ); in writeSection()
16641 if( !sectionNode.stdErr.empty() ) in writeSection()
16642 … xml.scopedElement( "system-err" ).writeText( trim( sectionNode.stdErr ), XmlFormatting::Newline ); in writeSection()
16644 for( auto const& childNode : sectionNode.childSections ) in writeSection()
16651 void JunitReporter::writeAssertions( SectionNode const& sectionNode ) { in writeAssertions() argument
16652 for( auto const& assertion : sectionNode.assertions ) in writeAssertions()