}
@Test
public void deployWebappFromStream() throws IOException {
System.setProperty("java.protocol.handler.pkgs", "org.ops4j.pax.url");
ExamSystem system = DefaultExamSystem.create(options());
TomcatTestContainer container = new TomcatTestContainer(system);
container.start();
InputStream is = new URL("mvn:org.apache.wicket/wicket-examples/1.5.3/war").openStream();
container.install(is);
is.close();