()
| 239 | } |
| 240 | |
| 241 | private String writeToNewFile() throws IOException { |
| 242 | File tempFile = File.createTempFile("mapCachingTest", ".tmp"); |
| 243 | tempFile.deleteOnExit(); |
| 244 | writeToFile(tempFile.getAbsolutePath()); |
| 245 | return tempFile.getAbsolutePath(); |
| 246 | } |
| 247 | |
| 248 | private void writeToFile(String path) throws IOException { |
| 249 | File tempFile = new File(path); |
no test coverage detected