1 19 20 package org.netbeans.modules.java.source.parsing; 21 22 import java.io.IOException ; 23 import java.util.jar.JarFile ; 24 import junit.framework.Test; 25 import junit.framework.TestSuite; 26 27 31 public class CachingZipArchiveTest extends CachingFolderArchiveTest { 32 33 36 public CachingZipArchiveTest(String testName) { 37 super(testName); 38 } 39 40 public static Test suite() { 41 setup = new Setup( new TestSuite( CachingZipArchiveTest.class ) ); 42 return setup; 43 } 44 45 @Override  46 protected Archive createArchive() { 47 return new CachingArchive( setup.rtFile, true); 48 } 49 50 } 51 | Popular Tags |