| 11832 | } |
| 11833 | |
| 11834 | void open() { |
| 11835 | if (!m_isOpen) { |
| 11836 | m_isOpen = true; |
| 11837 | *this << RowBreak(); |
| 11838 | for (auto const& info : m_columnInfos) |
| 11839 | *this << info.name << ColumnBreak(); |
| 11840 | *this << RowBreak(); |
| 11841 | m_os << Catch::getLineOfChars<'-'>() << "\n"; |
| 11842 | } |
| 11843 | } |
| 11844 | void close() { |
| 11845 | if (m_isOpen) { |
| 11846 | *this << RowBreak(); |
nothing calls this directly
no test coverage detected