| 3949 | m_deepestSection->stdErr = testCaseStats.stdErr; |
| 3950 | } |
| 3951 | void testGroupEnded(TestGroupStats const& testGroupStats) override { |
| 3952 | auto node = std::make_shared<TestGroupNode>(testGroupStats); |
| 3953 | node->children.swap(m_testCases); |
| 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); |