| 12544 | } |
| 12545 | |
| 12546 | Section::~Section() { |
| 12547 | if( m_sectionIncluded ) { |
| 12548 | SectionEndInfo endInfo{ m_info, m_assertions, m_timer.getElapsedSeconds() }; |
| 12549 | if( uncaught_exceptions() ) |
| 12550 | getResultCapture().sectionEndedEarly( endInfo ); |
| 12551 | else |
| 12552 | getResultCapture().sectionEnded( endInfo ); |
| 12553 | } |
| 12554 | } |
| 12555 | |
| 12556 | // This indicates whether the section should be executed or not |
| 12557 | Section::operator bool() const { |
nothing calls this directly
no test coverage detected