Reads the content of an Ion file contained in the test data suite. @param path is relative to the testdata directory. @throws FileNotFoundException @throws IOException
(String path)
| 245 | * @throws IOException |
| 246 | */ |
| 247 | public IonDatagram loadTestFile(String path) |
| 248 | throws IOException |
| 249 | { |
| 250 | File file = getTestdataFile(path); |
| 251 | return load(file); |
| 252 | } |
| 253 | |
| 254 | public IonDatagram load(File ionFile) |
| 255 | throws IonException, IOException |
no test coverage detected