| 13070 | namespace Catch { |
| 13071 | |
| 13072 | Section::Section( SectionInfo const& info ) |
| 13073 | : m_info( info ), |
| 13074 | m_sectionIncluded( getResultCapture().sectionStarted( m_info, m_assertions ) ) |
| 13075 | { |
| 13076 | m_timer.start(); |
| 13077 | } |
| 13078 | |
| 13079 | Section::~Section() { |
| 13080 | if( m_sectionIncluded ) { |
nothing calls this directly
no test coverage detected