Package com.humaorie.dollar.ArrayWrapper

Examples of com.humaorie.dollar.ArrayWrapper.IntegerArrayWrapper.toArray()


    @Test
    public void boxIntArray() {
        int[] unboxed = new int[]{42, 42, 42};
        IntegerArrayWrapper arrayWrapper = new IntegerArrayWrapper(unboxed);
        Assert.assertArrayEquals(new Integer[]{42, 42, 42}, arrayWrapper.toArray());
    }

    @Test
    public void boxLongArray() {
        long[] unboxed = new long[]{42L, 42L, 42L};
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.