| 10761 | namespace Catch { |
| 10762 | |
| 10763 | Section::Section( SectionInfo const& info ) |
| 10764 | : m_info( info ), |
| 10765 | m_sectionIncluded( getResultCapture().sectionStarted( m_info, m_assertions ) ) |
| 10766 | { |
| 10767 | m_timer.start(); |
| 10768 | } |
| 10769 | |
| 10770 | Section::~Section() { |
| 10771 | if( m_sectionIncluded ) { |
nothing calls this directly
no test coverage detected