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

HeapDoubleBufferTest

public class HeapDoubleBufferTest extends DoubleBufferTest

Fields Summary
Constructors Summary
Methods Summary
protected voidsetUp()

        super.setUp();
    
protected voidtearDown()

        super.tearDown();
    
public voidtestAllocatedDoubleBuffer_IllegalArg()

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