()
| 178 | } |
| 179 | |
| 180 | @Test |
| 181 | public void testByteSize() |
| 182 | { |
| 183 | for (int i = 0; i < TEST_DATA.length; i++) |
| 184 | { |
| 185 | IonBlob value = system().newNullBlob(); |
| 186 | byte[] testBytes = TEST_DATA[i].bytes; |
| 187 | value.setBytes(testBytes); |
| 188 | assertEquals("unexpected byte size", testBytes.length, |
| 189 | value.byteSize()); |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | |
| 194 | public static final class TestData |
nothing calls this directly
no test coverage detected