@Test
public void unboxIntegerArrayWithNulls() {
final Integer[] boxed = {null};
final int[] unboxed = {0};
final IntegerArrayWrapper arrayWrapper = new IntegerArrayWrapper(boxed);
Assert.assertArrayEquals(unboxed, arrayWrapper.toIntArray());
}
@Test
public void unboxIntegerArrayToLongArray() {
final Integer[] boxed = {42};