| 5847 | return true; |
| 5848 | } |
| 5849 | void sectionEnded(SectionStats const& sectionStats) override { |
| 5850 | assert(!m_sectionStack.empty()); |
| 5851 | SectionNode& node = *m_sectionStack.back(); |
| 5852 | node.stats = sectionStats; |
| 5853 | m_sectionStack.pop_back(); |
| 5854 | } |
| 5855 | void testCaseEnded(TestCaseStats const& testCaseStats) override { |
| 5856 | auto node = std::make_shared<TestCaseNode>(testCaseStats); |
| 5857 | assert(m_sectionStack.size() == 0); |