| 13530 | } |
| 13531 | } |
| 13532 | void ConsoleReporter::lazyPrintRunInfo() { |
| 13533 | stream << '\n' << getLineOfChars<'~'>() << '\n'; |
| 13534 | Colour colour(Colour::SecondaryText); |
| 13535 | stream << currentTestRunInfo->name |
| 13536 | << " is a Catch v" << libraryVersion() << " host application.\n" |
| 13537 | << "Run with -? for options\n\n"; |
| 13538 | |
| 13539 | if (m_config->rngSeed() != 0) |
| 13540 | stream << "Randomness seeded to: " << m_config->rngSeed() << "\n\n"; |
| 13541 | |
| 13542 | currentTestRunInfo.used = true; |
| 13543 | } |
| 13544 | void ConsoleReporter::lazyPrintGroupInfo() { |
| 13545 | if (!currentGroupInfo->name.empty() && currentGroupInfo->groupsCounts > 1) { |
| 13546 | printClosedHeader("Group: " + currentGroupInfo->name); |