()
| 696 | } |
| 697 | |
| 698 | @Test |
| 699 | public void builder_canSetRawAuthority() { |
| 700 | Uri uri = Uri.newBuilder().setScheme("http").setRawAuthority("user@host:1234").build(); |
| 701 | assertThat(uri.getUserInfo()).isEqualTo("user"); |
| 702 | assertThat(uri.getHost()).isEqualTo("host"); |
| 703 | assertThat(uri.getPort()).isEqualTo(1234); |
| 704 | } |
| 705 | |
| 706 | @Test |
| 707 | public void builder_setRawAuthorityPercentDecodes() { |
nothing calls this directly
no test coverage detected