| 362 | |
| 363 | struct NoIncludeConfTest { |
| 364 | std::string Parse(const char* arg) |
| 365 | { |
| 366 | TestArgsManager test; |
| 367 | test.SetupArgs({{"-includeconf", ArgsManager::ALLOW_ANY}}); |
| 368 | std::array argv{"ignored", arg}; |
| 369 | std::string error; |
| 370 | (void)test.ParseParameters(argv.size(), argv.data(), error); |
| 371 | return error; |
| 372 | } |
| 373 | }; |
| 374 | |
| 375 | BOOST_FIXTURE_TEST_CASE(util_NoIncludeConf, NoIncludeConfTest) |
nothing calls this directly
no test coverage detected