()
| 565 | } |
| 566 | |
| 567 | @Test |
| 568 | public void builder_noScheme_throws() { |
| 569 | IllegalStateException e = |
| 570 | assertThrows(IllegalStateException.class, () -> Uri.newBuilder().build()); |
| 571 | assertThat(e.getMessage()).contains("Missing required scheme"); |
| 572 | } |
| 573 | |
| 574 | @Test |
| 575 | public void builder_noHost_hasUserInfo_throws() { |
nothing calls this directly
no test coverage detected