FileDocCategorySizeDatePackage
WrappedIntBufferTest.javaAPI DocAndroid 1.5 API3283Wed May 06 22:41:04 BST 2009org.apache.harmony.nio.tests.java.nio

WrappedIntBufferTest

public class WrappedIntBufferTest extends IntBufferTest

Fields Summary
Constructors Summary
Methods Summary
protected voidsetUp()

        capacity = BUFFER_LENGTH;
        buf = IntBuffer.wrap(new int[BUFFER_LENGTH]);
        loadTestData1(buf);
        baseBuf = buf;
    
protected voidtearDown()

        baseBuf = null;
        buf = null;
    
public voidtestWrappedIntBuffer_IllegalArg()

tests
java.nio.CharBuffer#allocate(char[],int,int)

        int array[] = new int[20];
        try {
            IntBuffer.wrap(array, -1, 0);
            fail("Should throw Exception"); //$NON-NLS-1$
        } catch (IndexOutOfBoundsException e) {
            // expected
        }
        try {
            IntBuffer.wrap(array, 21, 0);
            fail("Should throw Exception"); //$NON-NLS-1$
        } catch (IndexOutOfBoundsException e) {
            // expected
        }
        try {
            IntBuffer.wrap(array, 0, -1);
            fail("Should throw Exception"); //$NON-NLS-1$
        } catch (IndexOutOfBoundsException e) {
            // expected
        }
        try {
            IntBuffer.wrap(array, 0, 21);
            fail("Should throw Exception"); //$NON-NLS-1$
        } catch (IndexOutOfBoundsException e) {
            // expected
        }
        try {
            IntBuffer.wrap(array, Integer.MAX_VALUE, 1);
            fail("Should throw Exception"); //$NON-NLS-1$
        } catch (IndexOutOfBoundsException e) {
            // expected
        }
        try {
            IntBuffer.wrap(array, 1, Integer.MAX_VALUE);
            fail("Should throw Exception"); //$NON-NLS-1$
        } catch (IndexOutOfBoundsException e) {
            // expected
        }
        try {
            IntBuffer.wrap((int[])null, -1, 0);
            fail("Should throw NPE"); //$NON-NLS-1$
        } catch (NullPointerException e) {
        }

        IntBuffer buf = IntBuffer.wrap(array, 2, 16);
        assertEquals(buf.position(), 2);
        assertEquals(buf.limit(), 18);
        assertEquals(buf.capacity(), 20);