| 12000 | } |
| 12001 | |
| 12002 | void ConsoleReporter::lazyPrintWithoutClosingBenchmarkTable() { |
| 12003 | |
| 12004 | if (!currentTestRunInfo.used) |
| 12005 | lazyPrintRunInfo(); |
| 12006 | if (!currentGroupInfo.used) |
| 12007 | lazyPrintGroupInfo(); |
| 12008 | |
| 12009 | if (!m_headerPrinted) { |
| 12010 | printTestCaseAndSectionHeader(); |
| 12011 | m_headerPrinted = true; |
| 12012 | } |
| 12013 | } |
| 12014 | void ConsoleReporter::lazyPrintRunInfo() { |
| 12015 | stream << '\n' << getLineOfChars<'~'>() << '\n'; |
| 12016 | Colour colour(Colour::SecondaryText); |
nothing calls this directly
no outgoing calls
no test coverage detected