metainf.remove("bytes.tmp");
assertNull(metainf.getChild("bytes.tmp"));
metainf.addBytes(new byte[]{1, 2, 3}, "bytes1.tmp");
metainf.addBytes(new byte[]{1, 2, 3}, "bytes2.tmp");
metainf.clear();
assertNull(metainf.getChild("bytes1.tmp"));
assertNull(metainf.getChild("bytes2.tmp"));
}
public void testAddPath() throws Exception