| 12537 | namespace Catch { |
| 12538 | |
| 12539 | Section::Section( SectionInfo const& info ) |
| 12540 | : m_info( info ), |
| 12541 | m_sectionIncluded( getResultCapture().sectionStarted( m_info, m_assertions ) ) |
| 12542 | { |
| 12543 | m_timer.start(); |
| 12544 | } |
| 12545 | |
| 12546 | Section::~Section() { |
| 12547 | if( m_sectionIncluded ) { |
nothing calls this directly
no test coverage detected