Zipper z = new Zipper(".");
z.createZipFileFromDirectory(".", zipName);
//Unzip the newly created directory and write it to the
//testZipper subdirectory
Unzipper uz = new Unzipper(resultDirectory);
uz.writeZipFile(zipName);
//Check to make sure that the two match
assertTrue(Utils.areIdentical(".", resultDirectory));
} catch (Exception ex) {
ex.printStackTrace();
fail(ex.toString());