| 3954 | m_testGroups.push_back(node); |
| 3955 | } |
| 3956 | void testRunEnded(TestRunStats const& testRunStats) override { |
| 3957 | auto node = std::make_shared<TestRunNode>(testRunStats); |
| 3958 | node->children.swap(m_testGroups); |
| 3959 | m_testRuns.push_back(node); |
| 3960 | testRunEndedCumulative(); |
| 3961 | } |
| 3962 | virtual void testRunEndedCumulative() = 0; |
| 3963 | |
| 3964 | void skipTest(TestCaseInfo const&) override {} |