()
| 38 | |
| 39 | |
| 40 | protected void setUp() throws Exception { |
| 41 | super.setUp(); |
| 42 | |
| 43 | File tmpFile = File.createTempFile("EMRTest","tmp"); |
| 44 | tmpFile.deleteOnExit(); |
| 45 | |
| 46 | PrintWriter pw = new PrintWriter(tmpFile); |
| 47 | pw.println(INPUT); |
| 48 | pw.close(); |
| 49 | |
| 50 | r = new ExternalMovementReader(tmpFile.getAbsolutePath()); |
| 51 | } |
| 52 | |
| 53 | public void testReader() { |
| 54 | List<Tuple<String, Coord>> list; |