()
| 492 | } |
| 493 | |
| 494 | private String getTempDirectory() { |
| 495 | if (tempDir == null) { |
| 496 | tempDir = new File(System.getProperty("java.io.tmpdir"), |
| 497 | "ejss" + new Random().nextInt()).toString() + File.separator; |
| 498 | } |
| 499 | return tempDir; |
| 500 | } |
| 501 | |
| 502 | public static void main(String[] args) { |
| 503 | new LoaderTest(); |
no test coverage detected