| 7033 | return true; |
| 7034 | } |
| 7035 | void sectionEnded(SectionStats const §ionStats) override |
| 7036 | { |
| 7037 | assert(!m_sectionStack.empty()); |
| 7038 | SectionNode &node = *m_sectionStack.back(); |
| 7039 | node.stats = sectionStats; |
| 7040 | m_sectionStack.pop_back(); |
| 7041 | } |
| 7042 | void testCaseEnded(TestCaseStats const &testCaseStats) override |
| 7043 | { |
| 7044 | auto node = std::make_shared<TestCaseNode>(testCaseStats); |