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

HeapLongBufferTest

public class HeapLongBufferTest extends LongBufferTest

Fields Summary
Constructors Summary
Methods Summary
protected voidsetUp()

        super.setUp();
    
protected voidtearDown()

        super.tearDown();
    
public voidtestAllocatedLongBuffer_IllegalArg()

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