Samuel Langlois created CMIS-728: ------------------------------------ Summary: JUnitHelper silently swallows exceptions Key: CMIS-728 URL: https://issues.apache.org/jira/browse/CMIS-728 Project: Chemistry Issue Type: Bug Components: opencmis-tck Affects Versions: OpenCMIS 0.10.0 Reporter: Samuel Langlois
The class {{org.apache.chemistry.opencmis.tck.impl.JUnitHelper}} is not helping much ;-) We use it to run the TCK, but whenever an exception occurs as part of these tests, it gets swallowed by this line, and we lose precious information on what actually happened: {code} Assert.fail(e.getMessage()); {code} It would be better to attach the whole stack trace to the failure message. However, I think the simplest would be to let the Exceptions pass and pop at the surface. Here is a patch to do just that, if it helps. Thanks! -- This message was sent by Atlassian JIRA (v6.1#6144)