| 13169 | namespace Catch { |
| 13170 | |
| 13171 | Section::Section( SectionInfo const& info ) |
| 13172 | : m_info( info ), |
| 13173 | m_sectionIncluded( getResultCapture().sectionStarted( m_info, m_assertions ) ) |
| 13174 | { |
| 13175 | m_timer.start(); |
| 13176 | } |
| 13177 | |
| 13178 | Section::~Section() { |
| 13179 | if( m_sectionIncluded ) { |
nothing calls this directly
no test coverage detected