MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / open

Method open

unittests/catch.hpp:11834–11843  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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();

Callers

nothing calls this directly

Calls 2

RowBreakClass · 0.85
ColumnBreakClass · 0.85

Tested by

no test coverage detected