Home
last modified time | relevance | path

Searched refs:testGroupStats (Results 1 – 12 of 12) sorted by relevance

/external/catch2/include/reporters/
Dcatch_reporter_xml.cpp201 void XmlReporter::testGroupEnded( TestGroupStats const& testGroupStats ) { in testGroupEnded() argument
202 StreamingReporterBase::testGroupEnded( testGroupStats ); in testGroupEnded()
205 .writeAttribute( "successes", testGroupStats.totals.assertions.passed ) in testGroupEnded()
206 .writeAttribute( "failures", testGroupStats.totals.assertions.failed ) in testGroupEnded()
207 .writeAttribute( "expectedFailures", testGroupStats.totals.assertions.failedButOk ); in testGroupEnded()
Dcatch_reporter_listening.cpp116 void ListeningReporter::testGroupEnded( TestGroupStats const& testGroupStats ) { in testGroupEnded() argument
118 listener->testGroupEnded( testGroupStats ); in testGroupEnded()
120 m_reporter->testGroupEnded( testGroupStats ); in testGroupEnded()
Dcatch_reporter_teamcity.hpp59 void testGroupEnded( TestGroupStats const& testGroupStats ) override { in testGroupEnded()
60 StreamingReporterBase::testGroupEnded( testGroupStats ); in testGroupEnded()
62 << escape( testGroupStats.groupInfo.name ) << "']\n"; in testGroupEnded()
Dcatch_reporter_xml.h49 void testGroupEnded(TestGroupStats const& testGroupStats) override;
Dcatch_reporter_junit.cpp112 void JunitReporter::testGroupEnded( TestGroupStats const& testGroupStats ) { in testGroupEnded() argument
114 CumulativeReporterBase::testGroupEnded( testGroupStats ); in testGroupEnded()
Dcatch_reporter_junit.h36 void testGroupEnded(TestGroupStats const& testGroupStats) override;
Dcatch_reporter_listening.h47 void testGroupEnded( TestGroupStats const& testGroupStats ) override;
Dcatch_reporter_bases.hpp225 void testGroupEnded(TestGroupStats const& testGroupStats) override { in testGroupEnded()
226 auto node = std::make_shared<TestGroupNode>(testGroupStats); in testGroupEnded()
/external/catch2/single_include/catch2/
Dcatch_reporter_teamcity.hpp59 void testGroupEnded( TestGroupStats const& testGroupStats ) override { in testGroupEnded()
60 StreamingReporterBase::testGroupEnded( testGroupStats ); in testGroupEnded()
62 << escape( testGroupStats.groupInfo.name ) << "']\n"; in testGroupEnded()
Dcatch.hpp5039 virtual void testGroupEnded( TestGroupStats const& testGroupStats ) = 0;
5281 void testGroupEnded(TestGroupStats const& testGroupStats) override { in testGroupEnded()
5282 auto node = std::make_shared<TestGroupNode>(testGroupStats); in testGroupEnded()
5675 void testGroupEnded(TestGroupStats const& testGroupStats) override;
5736 void testGroupEnded(TestGroupStats const& testGroupStats) override;
8902 void testGroupEnded( TestGroupStats const& testGroupStats ) override;
14036 void JunitReporter::testGroupEnded( TestGroupStats const& testGroupStats ) { in testGroupEnded() argument
14038 CumulativeReporterBase::testGroupEnded( testGroupStats ); in testGroupEnded()
14287 void ListeningReporter::testGroupEnded( TestGroupStats const& testGroupStats ) { in testGroupEnded() argument
14289 listener->testGroupEnded( testGroupStats ); in testGroupEnded()
[all …]
/external/catch2/include/internal/
Dcatch_interfaces_reporter.h201 virtual void testGroupEnded( TestGroupStats const& testGroupStats ) = 0;
/external/bcc/tests/cc/
Dcatch.hpp5261 virtual void testGroupEnded( TestGroupStats const& testGroupStats ) = 0;
7598 virtual void testGroupEnded( TestGroupStats const& testGroupStats );
7666 void LegacyReporterAdapter::testGroupEnded( TestGroupStats const& testGroupStats ) { in testGroupEnded() argument
7667 if( testGroupStats.aborting ) in testGroupEnded()
7669 m_legacyReporter->EndGroup( testGroupStats.groupInfo.name, testGroupStats.totals ); in testGroupEnded()
8474 virtual void testGroupEnded( TestGroupStats const& testGroupStats ) CATCH_OVERRIDE { in testGroupEnded() argument
8478 (*it)->testGroupEnded( testGroupStats ); in testGroupEnded()
8703 virtual void testGroupEnded( TestGroupStats const& testGroupStats ) CATCH_OVERRIDE { in testGroupEnded()
8704 Ptr<TestGroupNode> node = new TestGroupNode( testGroupStats ); in testGroupEnded()
9234 virtual void testGroupEnded( TestGroupStats const& testGroupStats ) CATCH_OVERRIDE { in testGroupEnded() argument
[all …]