()
| 30 | |
| 31 | |
| 32 | @Test |
| 33 | public void testGetFourBytes() { |
| 34 | byte[] input = new byte[] { (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff }; |
| 35 | long result = ByteUtil.getFourBytes(input, 0); |
| 36 | Assert.assertEquals(0xffffffffL, result); |
| 37 | } |
| 38 | |
| 39 | } |
nothing calls this directly
no test coverage detected