| 8963 | namespace Catch { |
| 8964 | |
| 8965 | Section::Section( SectionInfo const& info ) |
| 8966 | : m_info( info ), |
| 8967 | m_sectionIncluded( getResultCapture().sectionStarted( m_info, m_assertions ) ) |
| 8968 | { |
| 8969 | m_timer.start(); |
| 8970 | } |
| 8971 | |
| 8972 | Section::~Section() { |
| 8973 | if( m_sectionIncluded ) { |
nothing calls this directly
no test coverage detected