FileDocCategorySizeDatePackage
ISOCharsetDecoderTest.javaAPI DocAndroid 1.5 API2058Wed May 06 22:41:04 BST 2009tests.api.java.nio.charset

ISOCharsetDecoderTest

public class ISOCharsetDecoderTest extends AbstractCharsetDecoderTestCase
test ISO-8859-1 decoder

Fields Summary
Constructors Summary
Methods Summary
java.nio.ByteBuffergetExceptionByteArray()

        return null;
    
java.nio.ByteBuffergetMalformByteBuffer()

        // TODO how malform
        return null;
    
java.nio.ByteBuffergetUnmappedByteBuffer()

        // TODO how on map?
        return null;

    
protected voidsetUp()

        cs = Charset.forName("iso-8859-1");
        unibytes = new byte[] { 32, 98, 117, 102, 102, 101, 114 };
        super.setUp();
    
protected voidtearDown()

        super.tearDown();