| 232 | }; |
| 233 | |
| 234 | TEST_F(ConfigTest, Convert) { |
| 235 | const std::string converted = converter->Convert(std::string_view(input)); |
| 236 | EXPECT_EQ(expected, converted); |
| 237 | } |
| 238 | |
| 239 | TEST_F(ConfigTest, ConvertLength) { |
| 240 | const std::string result = converter->Convert(std::string_view(input)); |
nothing calls this directly
no test coverage detected