| 10496 | namespace Catch { |
| 10497 | |
| 10498 | Section::Section( SectionInfo const& info ) |
| 10499 | : m_info( info ), |
| 10500 | m_sectionIncluded( getResultCapture().sectionStarted( m_info, m_assertions ) ) |
| 10501 | { |
| 10502 | m_timer.start(); |
| 10503 | } |
| 10504 | |
| 10505 | Section::~Section() { |
| 10506 | if( m_sectionIncluded ) { |
nothing calls this directly
no test coverage detected