in = Segment.class
.getResourceAsStream("/org/apache/harmony/pack200/tests/JustResources.pack");
file = File.createTempFile("just", "resources.jar");
out = new JarOutputStream(new FileOutputStream(file));
Segment segment = new Segment();
segment.unpack(in, out);
}
public void testInterfaceOnly() throws Exception {
in = Segment.class
.getResourceAsStream("/org/apache/harmony/pack200/tests/InterfaceOnly.pack");