| 56 | BOOST_REQUIRE(ArgsManager::ReadConfigString(str_config)); |
| 57 | } |
| 58 | void SetupArgs(const std::vector<std::pair<std::string, unsigned int>>& args) |
| 59 | { |
| 60 | for (const auto& arg : args) { |
| 61 | AddArg(arg.first, "", arg.second, OptionsCategory::OPTIONS); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | // make protected methods available for testing |
| 66 | using ArgsManager::ReadConfigStream; |
no outgoing calls
no test coverage detected