| 13350 | } |
| 13351 | |
| 13352 | void open() { |
| 13353 | if (!m_isOpen) { |
| 13354 | m_isOpen = true; |
| 13355 | *this << RowBreak(); |
| 13356 | for (auto const& info : m_columnInfos) |
| 13357 | *this << info.name << ColumnBreak(); |
| 13358 | *this << RowBreak(); |
| 13359 | m_os << Catch::getLineOfChars<'-'>() << "\n"; |
| 13360 | } |
| 13361 | } |
| 13362 | void close() { |
| 13363 | if (m_isOpen) { |
| 13364 | *this << RowBreak(); |
nothing calls this directly
no test coverage detected