Returns the test URI. @return The test URI
()
| 39 | * @return The test URI |
| 40 | */ |
| 41 | public static URI getURI() |
| 42 | { |
| 43 | if (uri == null) |
| 44 | { |
| 45 | try |
| 46 | { |
| 47 | uri = new URI("file:/TESTCASE"); |
| 48 | } |
| 49 | catch (URISyntaxException e) |
| 50 | { |
| 51 | throw new IllegalStateException(e); |
| 52 | } |
| 53 | } |
| 54 | return uri; |
| 55 | } |
| 56 | |
| 57 | } |
no outgoing calls
no test coverage detected