()
| 169 | } |
| 170 | |
| 171 | @Test |
| 172 | public void parse_emptyFragment() { |
| 173 | Uri uri = Uri.create("scheme:#"); |
| 174 | assertThat(uri.getScheme()).isEqualTo("scheme"); |
| 175 | assertThat(uri.getFragment()).isEmpty(); |
| 176 | } |
| 177 | |
| 178 | @Test |
| 179 | public void parse_emptyUserInfo() { |
nothing calls this directly
no test coverage detected