| 3932 | return true; |
| 3933 | } |
| 3934 | void sectionEnded(SectionStats const& sectionStats) override { |
| 3935 | assert(!m_sectionStack.empty()); |
| 3936 | SectionNode& node = *m_sectionStack.back(); |
| 3937 | node.stats = sectionStats; |
| 3938 | m_sectionStack.pop_back(); |
| 3939 | } |
| 3940 | void testCaseEnded(TestCaseStats const& testCaseStats) override { |
| 3941 | auto node = std::make_shared<TestCaseNode>(testCaseStats); |
| 3942 | assert(m_sectionStack.size() == 0); |