@Test
public void unboxByteArrayToCharArray() {
Byte[] boxed = new Byte[] { 'f', 'o', 'o' };
ByteArrayWrapper arrayWrapper = new ByteArrayWrapper(boxed);
Assert.assertArrayEquals(new char[] { 'f', 'o', 'o' },
arrayWrapper.toCharArray());
}
@Test
public void unboxByteArrayToShortArray() {
Byte[] boxed = new Byte[]{42, 43, 44};