()
| 83 | } |
| 84 | |
| 85 | @Test |
| 86 | public void parse_ipv6ScopedLiteral() throws URISyntaxException { |
| 87 | Uri uri = Uri.parse("http://[fe80::1%25eth0]"); |
| 88 | assertThat(uri.getRawHost()).isEqualTo("[fe80::1%25eth0]"); |
| 89 | assertThat(uri.getHost()).isEqualTo("[fe80::1%eth0]"); |
| 90 | } |
| 91 | |
| 92 | @Test |
| 93 | public void parse_ipv6ScopedPercentEncodedLiteral() throws URISyntaxException { |
nothing calls this directly
no test coverage detected