(String input, String expected)
| 262 | |
| 263 | |
| 264 | private void doTestSolidus(String input, String expected) throws IOException { |
| 265 | for (EncodedSolidusHandling solidusHandling : EncodedSolidusHandling.values()) { |
| 266 | String result = doTestSolidus(input, solidusHandling); |
| 267 | Assert.assertEquals(expected, result); |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | |
| 272 | private String doTestSolidus(String input, EncodedSolidusHandling solidusHandling) throws IOException { |
no test coverage detected