| 16276 | } |
| 16277 | } |
| 16278 | void ConsoleReporter::lazyPrintRunInfo() { |
| 16279 | stream << '\n' << getLineOfChars<'~'>() << '\n'; |
| 16280 | Colour colour(Colour::SecondaryText); |
| 16281 | stream << currentTestRunInfo->name |
| 16282 | << " is a Catch v" << libraryVersion() << " host application.\n" |
| 16283 | << "Run with -? for options\n\n"; |
| 16284 | |
| 16285 | if (m_config->rngSeed() != 0) |
| 16286 | stream << "Randomness seeded to: " << m_config->rngSeed() << "\n\n"; |
| 16287 | |
| 16288 | currentTestRunInfo.used = true; |
| 16289 | } |
| 16290 | void ConsoleReporter::lazyPrintGroupInfo() { |
| 16291 | if (!currentGroupInfo->name.empty() && currentGroupInfo->groupsCounts > 1) { |
| 16292 | printClosedHeader("Group: " + currentGroupInfo->name); |