| 5869 | m_testGroups.push_back(node); |
| 5870 | } |
| 5871 | void testRunEnded(TestRunStats const& testRunStats) override { |
| 5872 | auto node = std::make_shared<TestRunNode>(testRunStats); |
| 5873 | node->children.swap(m_testGroups); |
| 5874 | m_testRuns.push_back(node); |
| 5875 | testRunEndedCumulative(); |
| 5876 | } |
| 5877 | virtual void testRunEndedCumulative() = 0; |
| 5878 | |
| 5879 | void skipTest(TestCaseInfo const&) override {} |
nothing calls this directly
no outgoing calls
no test coverage detected