| 9997 | m_stream << lineOfChars('.') << '\n'; |
| 9998 | } |
| 9999 | void ConsoleReporter::printOpenHeader(std::string const& _name) { |
| 10000 | m_stream << lineOfChars('-') << '\n'; |
| 10001 | { |
| 10002 | auto guard = m_colour->guardColour( Colour::Headers ).engage( m_stream ); |
| 10003 | printHeaderString(_name); |
| 10004 | } |
| 10005 | } |
| 10006 | |
| 10007 | void ConsoleReporter::printHeaderString(std::string const& _string, std::size_t indent) { |
| 10008 | // We want to get a bit fancy with line breaking here, so that subsequent |
nothing calls this directly
no test coverage detected