| 9 | struct MdnsInstanceNameTest: testing::TestWithParam<std::tuple<std::string, std::string>> {}; |
| 10 | |
| 11 | TEST_P(MdnsInstanceNameTest, Run) { |
| 12 | auto [input, expected] = GetParam(); |
| 13 | ASSERT_EQ(net::mdns_instance_name(input), expected); |
| 14 | } |
| 15 | |
| 16 | INSTANTIATE_TEST_SUITE_P( |
| 17 | MdnsInstanceNameTests, |
nothing calls this directly
no test coverage detected