@Before
 public void setup() throws ZipException, IOException {
   this.zipFile = new ZipFile(SampleProjects.springTravel());
   this.archive = newApplicationArchive(zipFile);
   this.archiveEntries = new HashMap<String, ApplicationArchive.Entry>();
   for (ApplicationArchive.Entry entry : archive.getEntries()) {
     archiveEntries.put(entry.getName(), entry);
   }
 }
 @Test
 public void shouldGetNameFromZipFileNameWithoutPath() throws Exception {
   assertThat(archive.getFilename(), is("swf-booking-mvc.war"));
 }