()
| 334 | } |
| 335 | |
| 336 | @Test |
| 337 | public void parse_decodingPercent() throws URISyntaxException { |
| 338 | Uri uri = Uri.parse("s://a/p%2520ath#f%25ragment"); |
| 339 | assertThat(uri.getPath()).isEqualTo("/p%20ath"); |
| 340 | assertThat(uri.getFragment()).isEqualTo("f%ragment"); |
| 341 | } |
| 342 | |
| 343 | @Test |
| 344 | public void parse_invalidPercentEncoding_throws() { |
nothing calls this directly
no test coverage detected