()
| 7 | private FileWriter errorWriter; |
| 8 | |
| 9 | public FileProcessor() throws IOException { |
| 10 | reader = new FileReader(new File("testfile.txt")); |
| 11 | code = transferFileToCode(); |
| 12 | writer = new FileWriter(new File("pcoderesult.txt")); |
| 13 | errorWriter = new FileWriter(new File("error.txt")); |
| 14 | } |
| 15 | |
| 16 | private String transferFileToCode() throws IOException { |
| 17 | BufferedReader bf = new BufferedReader(reader); |
nothing calls this directly
no test coverage detected