()
| 392 | } |
| 393 | |
| 394 | @Test |
| 395 | public void parse_twoPathSegments() throws URISyntaxException { |
| 396 | Uri uri = Uri.create("file:/foo/bar"); |
| 397 | assertThat(uri.getPathSegments()).containsExactly("foo", "bar"); |
| 398 | } |
| 399 | |
| 400 | @Test |
| 401 | public void parse_twoPathSegments_rootless() throws URISyntaxException { |
nothing calls this directly
no test coverage detected