()
| 162 | } |
| 163 | |
| 164 | @Test |
| 165 | public void parse_emptyQuery() { |
| 166 | Uri uri = Uri.create("scheme:?"); |
| 167 | assertThat(uri.getScheme()).isEqualTo("scheme"); |
| 168 | assertThat(uri.getRawQuery()).isEmpty(); |
| 169 | } |
| 170 | |
| 171 | @Test |
| 172 | public void parse_emptyFragment() { |
nothing calls this directly
no test coverage detected