| 5295 | m_deepestSection->stdErr = testCaseStats.stdErr; |
| 5296 | } |
| 5297 | void testGroupEnded(TestGroupStats const& testGroupStats) override { |
| 5298 | auto node = std::make_shared<TestGroupNode>(testGroupStats); |
| 5299 | node->children.swap(m_testCases); |
| 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); |