| 16616 | } |
| 16617 | } |
| 16618 | void ConsoleReporter::lazyPrintRunInfo() { |
| 16619 | stream << '\n' << getLineOfChars<'~'>() << '\n'; |
| 16620 | Colour colour(Colour::SecondaryText); |
| 16621 | stream << currentTestRunInfo->name |
| 16622 | << " is a Catch v" << libraryVersion() << " host application.\n" |
| 16623 | << "Run with -? for options\n\n"; |
| 16624 | |
| 16625 | if (m_config->rngSeed() != 0) |
| 16626 | stream << "Randomness seeded to: " << m_config->rngSeed() << "\n\n"; |
| 16627 | |
| 16628 | currentTestRunInfo.used = true; |
| 16629 | } |
| 16630 | void ConsoleReporter::lazyPrintGroupInfo() { |
| 16631 | if (!currentGroupInfo->name.empty() && currentGroupInfo->groupsCounts > 1) { |
| 16632 | printClosedHeader("Group: " + currentGroupInfo->name); |