public void testArchive2() throws Exception
{
URL url = getResource("/vfs/sundry/jar/archive.jar");
url = JarUtils.createJarURL(url);
VFS vfs = VFS.getVFS(url);
VirtualFile file = vfs.getRoot();
log.debug(file.getName() + " " + file);
assertFalse("Should not be a leaf", file.isLeaf());
file = file.findChild("empty");
log.debug(file.getName() + " " + file);
}