| 37 | } |
| 38 | |
| 39 | void SetupArgs(ArgsManager& local_args, const std::vector<std::pair<std::string, unsigned int>>& args) |
| 40 | { |
| 41 | for (const auto& arg : args) { |
| 42 | local_args.AddArg(arg.first, "", arg.second, OptionsCategory::OPTIONS); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | // Test behavior of GetArg functions when string, integer, and boolean types |
| 47 | // are specified in the settings.json file. GetArg functions are convenience |
no test coverage detected