(String name)
| 34 | public void tearDown() throws Exception {} |
| 35 | |
| 36 | void touch(String name) { |
| 37 | try { |
| 38 | File f = new File(name); |
| 39 | if (!f.exists()) new FileOutputStream(f).close(); |
| 40 | f.setLastModified(TimeUtil.getCurrentTime().getTime()); |
| 41 | } catch (IOException e) { |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | void rm(String name) { |
| 46 | File file = new File(name); |
no test coverage detected