| 49 | { |
| 50 | |
| 51 | CommandLineOptions parseCommandLine(std::vector<std::string> const& _commandLine) |
| 52 | { |
| 53 | std::vector<char const*> argv = test::makeArgv(_commandLine); |
| 54 | |
| 55 | CommandLineParser cliParser; |
| 56 | cliParser.parse(static_cast<int>(_commandLine.size()), argv.data()); |
| 57 | return cliParser.options(); |
| 58 | } |
| 59 | |
| 60 | } // namespace |
| 61 |