Home
last modified time | relevance | path

Searched refs:sectionNode (Results 1 – 5 of 5) sorted by relevance

/external/catch2/include/reporters/
Dcatch_reporter_junit.cpp168 SectionNode const& sectionNode ) { in writeSection() argument
169 std::string name = trim( sectionNode.stats.sectionInfo.name ); in writeSection()
173 if( !sectionNode.assertions.empty() || in writeSection()
174 !sectionNode.stdOut.empty() || in writeSection()
175 !sectionNode.stdErr.empty() ) { in writeSection()
185 … xml.writeAttribute( "time", ::Catch::Detail::stringify( sectionNode.stats.durationInSeconds ) ); in writeSection()
187 writeAssertions( sectionNode ); in writeSection()
189 if( !sectionNode.stdOut.empty() ) in writeSection()
190 xml.scopedElement( "system-out" ).writeText( trim( sectionNode.stdOut ), false ); in writeSection()
191 if( !sectionNode.stdErr.empty() ) in writeSection()
[all …]
Dcatch_reporter_junit.h46 SectionNode const& sectionNode);
48 void writeAssertions(SectionNode const& sectionNode);
Dcatch_reporter_bases.hpp204 SectionNode& sectionNode = *m_sectionStack.back(); in assertionEnded() local
205 sectionNode.assertions.push_back(assertionStats); in assertionEnded()
/external/bcc/tests/cc/
Dcatch.hpp8682 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()
[all …]
/external/catch2/single_include/catch2/
Dcatch.hpp5260 SectionNode& sectionNode = *m_sectionStack.back(); in assertionEnded() local
5261 sectionNode.assertions.push_back(assertionStats); in assertionEnded()
5685 SectionNode const& sectionNode);
5687 void writeAssertions(SectionNode const& sectionNode);
14092 SectionNode const& sectionNode ) { in writeSection() argument
14093 std::string name = trim( sectionNode.stats.sectionInfo.name ); in writeSection()
14097 if( !sectionNode.assertions.empty() || in writeSection()
14098 !sectionNode.stdOut.empty() || in writeSection()
14099 !sectionNode.stdErr.empty() ) { in writeSection()
14109 … xml.writeAttribute( "time", ::Catch::Detail::stringify( sectionNode.stats.durationInSeconds ) ); in writeSection()
[all …]