| 5278 | return true; |
| 5279 | } |
| 5280 | void sectionEnded(SectionStats const& sectionStats) override { |
| 5281 | assert(!m_sectionStack.empty()); |
| 5282 | SectionNode& node = *m_sectionStack.back(); |
| 5283 | node.stats = sectionStats; |
| 5284 | m_sectionStack.pop_back(); |
| 5285 | } |
| 5286 | void testCaseEnded(TestCaseStats const& testCaseStats) override { |
| 5287 | auto node = std::make_shared<TestCaseNode>(testCaseStats); |
| 5288 | assert(m_sectionStack.size() == 0); |