container.start();
assertEquals(0, webapps().length);
final DeployerEjb deployerEjb = new DeployerEjb();
deployerEjb.deploy(APP.getAbsolutePath());
assertEquals(1, webapps().length);
deployerEjb.undeploy(APP.getAbsolutePath());
assertEquals(0, webapps().length);
}
@Test
public void justAContextStop() throws Exception {