@param expectedString @param text is ion text for a blob. @throws NullValueException @throws IOException
(String expectedString, String text)
| 60 | * @throws IOException |
| 61 | */ |
| 62 | private void checkUtf8(String expectedString, String text) |
| 63 | throws NullValueException, IOException |
| 64 | { |
| 65 | IonClob value = (IonClob) oneValue(text); |
| 66 | checkUtf8(expectedString, value); |
| 67 | } |
| 68 | |
| 69 | private void checkUtf8(String expectedString, IonClob value) |
| 70 | throws NullValueException, IOException |
no test coverage detected