| 12952 | namespace Catch { |
| 12953 | |
| 12954 | Section::Section( SectionInfo const& info ) |
| 12955 | : m_info( info ), |
| 12956 | m_sectionIncluded( getResultCapture().sectionStarted( m_info, m_assertions ) ) |
| 12957 | { |
| 12958 | m_timer.start(); |
| 12959 | } |
| 12960 | |
| 12961 | Section::~Section() { |
| 12962 | if( m_sectionIncluded ) { |
nothing calls this directly
no test coverage detected