()
| 238 | } |
| 239 | |
| 240 | @Test |
| 241 | public void testFloatToBytes() throws IOException { |
| 242 | Float f = r.nextFloat(); |
| 243 | assertTrue(DataType.equalByteArrays(f.toString().getBytes(), ((Utf8StorageConverter)ps.getLoadCaster()).toBytes(f))); |
| 244 | } |
| 245 | |
| 246 | @Test |
| 247 | public void testDoubleToBytes() throws IOException { |
nothing calls this directly
no test coverage detected