| 13158 | namespace Catch { |
| 13159 | |
| 13160 | Section::Section( SectionInfo const& info ) |
| 13161 | : m_info( info ), |
| 13162 | m_sectionIncluded( getResultCapture().sectionStarted( m_info, m_assertions ) ) |
| 13163 | { |
| 13164 | m_timer.start(); |
| 13165 | } |
| 13166 | |
| 13167 | Section::~Section() { |
| 13168 | if( m_sectionIncluded ) { |
nothing calls this directly
no test coverage detected