blob: dca8739f0def5e60d1e586055d3e96f9dc65ca6c [file] [log] [blame]
package org.eclipse.wst.xml.catalog.tests.internal;
import java.io.InputStream;
import java.net.URL;
import junit.framework.TestCase;
public class ZipTest extends TestCase {
public void testZip() throws Exception{
URL url = new URL("jar:file:/D:/tcs/catalogJarTest/schemas.jar!/data/catalog.xsd");
InputStream is = url.openStream();
}
}