()
| 13 | } |
| 14 | |
| 15 | private static void setupURL() throws MalformedURLException { |
| 16 | StringBuilder builder = new StringBuilder(); |
| 17 | builder.append(domain); |
| 18 | builder.append(file); |
| 19 | url = new URL(builder.toString()); |
| 20 | } |
| 21 | |
| 22 | private static void testGetPath() { |
| 23 | expect(url.getPath().equals(path)); |