Searched refs:sourceBundle (Results 1 - 2 of 2) sorted by relevance

/opengrok-jel/test/org/opensolaris/opengrok/util/
H A DTestRepository.java49 File sourceBundle = null;
53 sourceBundle = File.createTempFile("srcbundle", ".zip");
55 if (sourceBundle.exists()) {
56 assertTrue(sourceBundle.delete());
60 FileOutputStream out = new FileOutputStream(sourceBundle);
63 FileUtilities.extractArchive(sourceBundle, sourceRoot);
67 if (sourceBundle != null) {
68 sourceBundle.delete();
H A DFileUtilities.java49 * @param sourceBundle bundle to extract
54 public static void extractArchive(File sourceBundle, File root) argument
57 ZipFile zipfile = new ZipFile(sourceBundle);

Completed in 7 milliseconds