public void testWithSql() throws Exception {
in = Archive.class
.getResourceAsStream("/org/apache/harmony/pack200/tests/sql.pack.gz");
file = File.createTempFile("sql", ".jar");
out = new JarOutputStream(new FileOutputStream(file));
Archive archive = new Archive(in, out);
archive.unpack();
JarFile jarFile = new JarFile(file);
file.deleteOnExit();
JarEntry entry = jarFile
.getJarEntry("bin/test/org/apache/harmony/sql/tests/javax/sql/rowset/BaseRowSetTest$BaseRowSetImpl.class");
assertNotNull(entry);