| 8893 | namespace Catch { |
| 8894 | |
| 8895 | Section::Section(SectionInfo const &info) |
| 8896 | : m_info(info), m_sectionIncluded(getResultCapture().sectionStarted(m_info, m_assertions)) { |
| 8897 | m_timer.start(); |
| 8898 | } |
| 8899 | |
| 8900 | Section::~Section() { |
| 8901 | if (m_sectionIncluded) { |
nothing calls this directly
no test coverage detected