| 13637 | } |
| 13638 | |
| 13639 | void open() { |
| 13640 | if (!m_isOpen) { |
| 13641 | m_isOpen = true; |
| 13642 | *this << RowBreak(); |
| 13643 | for (auto const& info : m_columnInfos) |
| 13644 | *this << info.name << ColumnBreak(); |
| 13645 | *this << RowBreak(); |
| 13646 | m_os << Catch::getLineOfChars<'-'>() << "\n"; |
| 13647 | } |
| 13648 | } |
| 13649 | void close() { |
| 13650 | if (m_isOpen) { |
| 13651 | *this << RowBreak(); |
nothing calls this directly
no test coverage detected