| 11734 | } |
| 11735 | |
| 11736 | void open() { |
| 11737 | if (!m_isOpen) { |
| 11738 | m_isOpen = true; |
| 11739 | *this << RowBreak(); |
| 11740 | for (auto const &info : m_columnInfos) |
| 11741 | *this << info.name << ColumnBreak(); |
| 11742 | *this << RowBreak(); |
| 11743 | m_os << Catch::getLineOfChars<'-'>() << "\n"; |
| 11744 | } |
| 11745 | } |
| 11746 | void close() { |
| 11747 | if (m_isOpen) { |
| 11748 | *this << RowBreak(); |
nothing calls this directly
no test coverage detected