| 5300 | m_testGroups.push_back(node); |
| 5301 | } |
| 5302 | void testRunEnded(TestRunStats const& testRunStats) override { |
| 5303 | auto node = std::make_shared<TestRunNode>(testRunStats); |
| 5304 | node->children.swap(m_testGroups); |
| 5305 | m_testRuns.push_back(node); |
| 5306 | testRunEndedCumulative(); |
| 5307 | } |
| 5308 | virtual void testRunEndedCumulative() = 0; |
| 5309 | |
| 5310 | void skipTest(TestCaseInfo const&) override {} |