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

HeapCharBufferTest

public class HeapCharBufferTest extends CharBufferTest

Fields Summary
Constructors Summary
Methods Summary
protected voidsetUp()

        super.setUp();
    
protected voidtearDown()

        super.tearDown();
    
public voidtestAllocatedCharBuffer_IllegalArg()

        try {
            CharBuffer.allocate(-1);
            fail("Should throw Exception"); //$NON-NLS-1$
        } catch (IllegalArgumentException e) {
            // expected
        }