MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / sectionEnded

Method sectionEnded

unittests/catch.hpp:3934–3939  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 3

backMethod · 0.80
pop_backMethod · 0.80
emptyMethod · 0.45

Tested by

no test coverage detected