()
| 232 | } |
| 233 | |
| 234 | @Test |
| 235 | public void testLongToBytes() throws IOException { |
| 236 | Long l = r.nextLong(); |
| 237 | assertTrue(DataType.equalByteArrays(l.toString().getBytes(), ((Utf8StorageConverter)ps.getLoadCaster()).toBytes(l))); |
| 238 | } |
| 239 | |
| 240 | @Test |
| 241 | public void testFloatToBytes() throws IOException { |
nothing calls this directly
no test coverage detected