private void undeployFailOnError(String file) { try { log.info("Undeploying : " + file); super.undeploy(file); } catch (Exception e) { fail("Failed to undeploy: " + file); } }
private void deployFailOnError(String file) { try { log.info("Deploying : " + file); super.deploy(file); } catch (Exception e) { e.printStackTrace(); fail("Failed to deploy: " + file); } }
public static Test suite() throws Exception { return JBossTestCase.getDeploySetup( UncontendedInterleavingStressTestCase.class, "jca-tests.jar"); }