@Test
public void unboxByteArrayToIntArray() {
Byte[] boxed = new Byte[]{42, 43, 44};
ByteArrayWrapper arrayWrapper = new ByteArrayWrapper(boxed);
Assert.assertArrayEquals(new int[]{42, 43, 44}, arrayWrapper.toIntArray());
}
@Test
public void unboxByteArrayToLongArray() {
Byte[] boxed = new Byte[]{42, 43, 44};