Searched refs:strURL (Results 1 – 2 of 2) sorted by relevance
784 String strURL = "http://a/b/c/d;p?q"; in test_toExternalForm_Relative() local786 URL url = new URL(new URL(strURL), ref); in test_toExternalForm_Relative()791 String strURL = "http://localhost?name=value"; in test_toExternalForm_Absolute() local792 URL url = new URL(strURL); in test_toExternalForm_Absolute()793 assertEquals(strURL, url.toExternalForm()); in test_toExternalForm_Absolute()795 strURL = "http://localhost?name=value/age=12"; in test_toExternalForm_Absolute()796 url = new URL(strURL); in test_toExternalForm_Absolute()797 assertEquals(strURL, url.toExternalForm()); in test_toExternalForm_Absolute()
1065 String strURL = "http://localhost?name=value"; in test_toExternalForm_Absolute() local1066 URL url = new URL(strURL); in test_toExternalForm_Absolute()1067 assertEquals(strURL, url.toExternalForm()); in test_toExternalForm_Absolute()1069 strURL = "http://localhost?name=value/age=12"; in test_toExternalForm_Absolute()1070 url = new URL(strURL); in test_toExternalForm_Absolute()1071 assertEquals(strURL, url.toExternalForm()); in test_toExternalForm_Absolute()1075 String strURL = "http://a/b/c/d;p?q"; in test_toExternalForm_Relative() local1077 URL url = new URL(new URL(strURL), ref); in test_toExternalForm_Relative()