| 5915 | return true; |
| 5916 | } |
| 5917 | void sectionEnded(SectionStats const& sectionStats) override { |
| 5918 | assert(!m_sectionStack.empty()); |
| 5919 | SectionNode& node = *m_sectionStack.back(); |
| 5920 | node.stats = sectionStats; |
| 5921 | m_sectionStack.pop_back(); |
| 5922 | } |
| 5923 | void testCaseEnded(TestCaseStats const& testCaseStats) override { |
| 5924 | auto node = std::make_shared<TestCaseNode>(testCaseStats); |
| 5925 | assert(m_sectionStack.size() == 0); |