Package com.humaorie.dollar.ArrayWrapper

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


    @Test
    public void boxShortArray() {
        short[] unboxed = new short[]{42, 42, 42};
        ShortArrayWrapper arrayWrapper = new ShortArrayWrapper(unboxed);
        Assert.assertArrayEquals(new Short[]{42, 42, 42}, arrayWrapper.toArray());
    }

    @Test
    public void boxIntArray() {
        int[] unboxed = new int[]{42, 42, 42};
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.