assertTrue(file.getName().endsWith(".jar"));
File unzippedPluginDir = TempHelp.getTempDir("download.jar-file-extension-unzip");
FileUnzipper unzipper = new FileUnzipper(file, unzippedPluginDir);
Set<String> entries = new HashSet<String>();
for (ZipEntry entry : unzipper.entries())
{
entries.add(entry.getName());
}
unzipper.unzip();