| 12934 | namespace Catch { |
| 12935 | |
| 12936 | Section::Section( SectionInfo const& info ) |
| 12937 | : m_info( info ), |
| 12938 | m_sectionIncluded( getResultCapture().sectionStarted( m_info, m_assertions ) ) |
| 12939 | { |
| 12940 | m_timer.start(); |
| 12941 | } |
| 12942 | |
| 12943 | Section::~Section() { |
| 12944 | if( m_sectionIncluded ) { |
nothing calls this directly
no test coverage detected