| 43 | } |
| 44 | |
| 45 | static CService ResolveService(const std::string& ip, uint16_t port = 0) |
| 46 | { |
| 47 | const std::optional<CService> serv{Lookup(ip, port, false)}; |
| 48 | BOOST_CHECK_MESSAGE(serv.has_value(), strprintf("failed to resolve: %s:%i", ip, port)); |
| 49 | return serv.value_or(CService{}); |
| 50 | } |
| 51 | |
| 52 | BOOST_FIXTURE_TEST_SUITE(addrman_tests, BasicTestingSetup) |
| 53 |
no test coverage detected