()
| 773 | } |
| 774 | |
| 775 | @Test |
| 776 | public void isAbsolute() { |
| 777 | assertThat(Uri.create("scheme://authority/path").isAbsolute()).isTrue(); |
| 778 | assertThat(Uri.create("scheme://authority/path?query").isAbsolute()).isTrue(); |
| 779 | assertThat(Uri.create("scheme://authority/path#fragment").isAbsolute()).isFalse(); |
| 780 | assertThat(Uri.create("scheme://authority/path?query#fragment").isAbsolute()).isFalse(); |
| 781 | } |
| 782 | |
| 783 | @Test |
| 784 | public void serializedCharacterClasses_matchComputed() { |