Examples of ZipError


Examples of java.util.zip.ZipError

    /**
     * @tests {@link java.util.zip.ZipError#ZipError(String)}
     */
    public void test_constructor() {
        ZipError error = new ZipError("ZipError");
        assertEquals("ZipError", error.getMessage());
    }
View Full Code Here

Examples of java.util.zip.ZipError

   
    /**
     * @tests java.util.zip.ZipError#Serialization()
     */
    public void test_serialization() throws Exception {
        ZipError error = new ZipError("serialization test");
        SerializationTest.verifySelf(error);
    }
View Full Code Here

Examples of java.util.zip.ZipError

   
    /**
     * @tests serialization/deserialization compatibility with RI.
     */
    public void testSerializationCompatibility() throws Exception {
        ZipError error = new ZipError("serialization test");
        SerializationTest.verifyGolden(this, error);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.