| 7012 | } |
| 7013 | |
| 7014 | void showHelp( std::string const& processName ) { |
| 7015 | Catch::cout() << "\nCatch v" << libraryVersion() << "\n"; |
| 7016 | |
| 7017 | m_cli.usage( Catch::cout(), processName ); |
| 7018 | Catch::cout() << "For more detail usage please see the project docs\n" << std::endl; |
| 7019 | } |
| 7020 | |
| 7021 | int applyCommandLine( int argc, char const* const* const argv, OnUnusedOptions::DoWhat unusedOptionBehaviour = OnUnusedOptions::Fail ) { |
| 7022 | try { |
nothing calls this directly
no test coverage detected