(String filename, String[] inputData)
| 337 | } |
| 338 | |
| 339 | static public File createLocalInputFile(String filename, String[] inputData) |
| 340 | throws IOException { |
| 341 | File f = new File(filename); |
| 342 | f.deleteOnExit(); |
| 343 | writeToFile(f, inputData); |
| 344 | return f; |
| 345 | } |
| 346 | |
| 347 | public static void writeToFile(File f, String[] inputData) throws |
| 348 | IOException { |
no test coverage detected