// undeploy each app in for-each loop
for (String deployedApp : deployedApps) {
try {
//see http://java.net/jira/browse/EMBEDDED_GLASSFISH-123
deployer.undeploy(deployedApp, "--droptables", "true");
} catch (GlassFishException glassFishException) {
throw new TestContainerException(glassFishException);
}
LOGGER.info("Undeployed = " + deployedApp);
}