()
| 412 | } |
| 413 | |
| 414 | @Test |
| 415 | public void fixFloatingPointValueWasInt() { |
| 416 | assertArrayEquals(new byte[] { 0, 0, 0, 1 }, |
| 417 | Internal.fixFloatingPointValue((byte) 0x03, |
| 418 | new byte[] { 0, 0, 0, 1 })); |
| 419 | } |
| 420 | |
| 421 | @Test (expected = IllegalDataException.class) |
| 422 | public void fixFloatingPointValueCorrupt() { |
nothing calls this directly
no test coverage detected