| 16264 | } |
| 16265 | |
| 16266 | void ConsoleReporter::lazyPrintWithoutClosingBenchmarkTable() { |
| 16267 | |
| 16268 | if (!currentTestRunInfo.used) |
| 16269 | lazyPrintRunInfo(); |
| 16270 | if (!currentGroupInfo.used) |
| 16271 | lazyPrintGroupInfo(); |
| 16272 | |
| 16273 | if (!m_headerPrinted) { |
| 16274 | printTestCaseAndSectionHeader(); |
| 16275 | m_headerPrinted = true; |
| 16276 | } |
| 16277 | } |
| 16278 | void ConsoleReporter::lazyPrintRunInfo() { |
| 16279 | stream << '\n' << getLineOfChars<'~'>() << '\n'; |
| 16280 | Colour colour(Colour::SecondaryText); |
nothing calls this directly
no outgoing calls
no test coverage detected