@Test
public void unboxShortArrayWithNulls() {
final Short[] boxed = {null};
final short[] unboxed = {0};
final ShortArrayWrapper arrayWrapper = new ShortArrayWrapper(boxed);
Assert.assertArrayEquals(unboxed, arrayWrapper.toShortArray());
}
@Test
public void unboxIntegerArray() {
final Integer[] boxed = {42};