(InputStream in)
| 250 | } |
| 251 | |
| 252 | public static TestFile parse(InputStream in) throws IOException { |
| 253 | return parse(new InputStreamReader(in)); |
| 254 | } |
| 255 | |
| 256 | public static TestFile parse(Reader in) throws IOException { |
| 257 | HashMap<String,Object> config = new HashMap<>(); |
no test coverage detected