| 14 | struct UrlEscapeTest: testing::TestWithParam<std::tuple<std::string, std::string>> {}; |
| 15 | |
| 16 | TEST_P(UrlEscapeTest, Run) { |
| 17 | const auto &[input, expected] = GetParam(); |
| 18 | ASSERT_EQ(http::url_escape(input), expected); |
| 19 | } |
| 20 | |
| 21 | INSTANTIATE_TEST_SUITE_P( |
| 22 | UrlEscapeTests, |
nothing calls this directly
no test coverage detected