@Test
public void unboxIntegerArrayToLongArray() {
final Integer[] boxed = {42};
final long[] unboxed = {42};
final IntegerArrayWrapper arrayWrapper = new IntegerArrayWrapper(boxed);
Assert.assertArrayEquals(unboxed, arrayWrapper.toLongArray());
}
@Test
public void unboxIntegerArrayToFloatArray() {
final Integer[] boxed = { 42 };