()
| 690 | } |
| 691 | |
| 692 | @Test |
| 693 | public void builder_canSetEmptyAuthority() { |
| 694 | Uri uri = Uri.create("s://user@host:80/path").toBuilder().setRawAuthority("").build(); |
| 695 | assertThat(uri.toString()).isEqualTo("s:///path"); |
| 696 | } |
| 697 | |
| 698 | @Test |
| 699 | public void builder_canSetRawAuthority() { |
nothing calls this directly
no test coverage detected