Lines Matching refs:testGroupStats
5619 virtual void testGroupEnded( TestGroupStats const& testGroupStats ) = 0;
5866 void testGroupEnded(TestGroupStats const& testGroupStats) override { in testGroupEnded()
5867 auto node = std::make_shared<TestGroupNode>(testGroupStats); in testGroupEnded()
6280 void testGroupEnded(TestGroupStats const& testGroupStats) override;
6341 void testGroupEnded(TestGroupStats const& testGroupStats) override;
10887 void testGroupEnded( TestGroupStats const& testGroupStats ) override;
16546 void JunitReporter::testGroupEnded( TestGroupStats const& testGroupStats ) { in testGroupEnded() argument
16548 CumulativeReporterBase::testGroupEnded( testGroupStats ); in testGroupEnded()
16850 void ListeningReporter::testGroupEnded( TestGroupStats const& testGroupStats ) { in testGroupEnded() argument
16852 listener->testGroupEnded( testGroupStats ); in testGroupEnded()
16854 m_reporter->testGroupEnded( testGroupStats ); in testGroupEnded()
17067 void XmlReporter::testGroupEnded( TestGroupStats const& testGroupStats ) { in testGroupEnded() argument
17068 StreamingReporterBase::testGroupEnded( testGroupStats ); in testGroupEnded()
17071 .writeAttribute( "successes", testGroupStats.totals.assertions.passed ) in testGroupEnded()
17072 .writeAttribute( "failures", testGroupStats.totals.assertions.failed ) in testGroupEnded()
17073 .writeAttribute( "expectedFailures", testGroupStats.totals.assertions.failedButOk ); in testGroupEnded()