BusinessDetail result = inquiry.getBusinessDetail(body);
Assert.fail("No business should be found");
System.out.println(result.getBusinessEntity().size());
} catch (Exception e) {
try {
DispositionReport report = DispositionReportFaultMessage.getDispositionReport(e);
assertNotNull(report);
assertTrue(report.countainsErrorCode(DispositionReport.E_INVALID_KEY_PASSED));
} catch (Exception e1) {
Assert.fail("We only expect DispositionReportFaultMessage, not " + e1.getClass());
logger.error(e.getMessage(), e1);
}
}