# HG changeset patch # User amlu # Date 1573653388 -28800 # Node ID c8e15590c7cc55cf9d1c618d0c71cf3ba06d1ff4 # Parent 15936b142f86731afa4b1a2c0fe4a01e806c4944 8234079: ZipFileInputStreamSkipTest.java runs zero test Reviewed-by: lancea diff -r 15936b142f86 -r c8e15590c7cc test/jdk/java/util/zip/ZipFile/ZipFileInputStreamSkipTest.java --- a/test/jdk/java/util/zip/ZipFile/ZipFileInputStreamSkipTest.java Wed Nov 13 08:23:23 2019 -0500 +++ b/test/jdk/java/util/zip/ZipFile/ZipFileInputStreamSkipTest.java Wed Nov 13 21:56:28 2019 +0800 @@ -105,7 +105,7 @@ * @throws Exception If an error occurs during the test */ @Test - private void testStoredSkip() throws Exception { + public void testStoredSkip() throws Exception { try (ZipFile zf = new ZipFile(STORED_ZIPFILE.toFile())) { var entries = zf.entries(); @@ -153,7 +153,7 @@ * @throws Exception If an error occurs during the test */ @Test - private void testStoredNegativeSkip() throws Exception { + public void testStoredNegativeSkip() throws Exception { try (ZipFile zf = new ZipFile(STORED_ZIPFILE.toFile())) { var entries = zf.entries(); @@ -198,7 +198,7 @@ * @throws Exception If an error occurs during the test */ @Test - private void testDeflatedSkip() throws Exception { + public void testDeflatedSkip() throws Exception { try (ZipFile zf = new ZipFile(DEFLATED_ZIPFILE.toFile())) { var toSkip = 5; // Bytes to Skip var entries = zf.entries(); @@ -225,7 +225,7 @@ * @throws Exception If an unexpected error occurs during the test */ @Test - private void testDeflatedIOException() throws Exception { + public void testDeflatedIOException() throws Exception { try (ZipFile zf = new ZipFile(DEFLATED_ZIPFILE.toFile())) { var entries = zf.entries(); while (entries.hasMoreElements()) {