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