Home
last modified time | relevance | path

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

/external/catch2/include/reporters/
Dcatch_reporter_junit.cpp177 SectionNode const& sectionNode ) { in writeSection() argument
178 std::string name = trim( sectionNode.stats.sectionInfo.name ); in writeSection()
182 if( !sectionNode.assertions.empty() || in writeSection()
183 !sectionNode.stdOut.empty() || in writeSection()
184 !sectionNode.stdErr.empty() ) { in writeSection()
194 … xml.writeAttribute( "time", ::Catch::Detail::stringify( sectionNode.stats.durationInSeconds ) ); in writeSection()
196 writeAssertions( sectionNode ); in writeSection()
198 if( !sectionNode.stdOut.empty() ) in writeSection()
199 xml.scopedElement( "system-out" ).writeText( trim( sectionNode.stdOut ), false ); in writeSection()
200 if( !sectionNode.stdErr.empty() ) in writeSection()
[all …]
Dcatch_reporter_junit.h46 SectionNode const& sectionNode);
48 void writeAssertions(SectionNode const& sectionNode);
Dcatch_reporter_bases.hpp207 SectionNode& sectionNode = *m_sectionStack.back(); in assertionEnded() local
208 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.hpp5278 SectionNode& sectionNode = *m_sectionStack.back(); in assertionEnded() local
5279 sectionNode.assertions.push_back(assertionStats); in assertionEnded()
5704 SectionNode const& sectionNode);
5706 void writeAssertions(SectionNode const& sectionNode);
14159 SectionNode const& sectionNode ) { in writeSection() argument
14160 std::string name = trim( sectionNode.stats.sectionInfo.name ); in writeSection()
14164 if( !sectionNode.assertions.empty() || in writeSection()
14165 !sectionNode.stdOut.empty() || in writeSection()
14166 !sectionNode.stdErr.empty() ) { in writeSection()
14176 … xml.writeAttribute( "time", ::Catch::Detail::stringify( sectionNode.stats.durationInSeconds ) ); in writeSection()
[all …]