JarOutputStream out = new JarOutputStream(bout);
out.putNextEntry(new ZipEntry("random.html"));
out.write("hello world".getBytes());
out.close();
InputStreamProvider input = makeTestFile(bout.toByteArray());
Properties props = new Properties();
props.put(WarToWabConverter.WEB_CONTEXT_PATH, "/test");
props.put(Constants.BUNDLE_SYMBOLICNAME, "test.bundle");
WarToWabConverterImpl sut = new WarToWabConverterImpl(input, WAR_FILE_NAME, props);