When I\'m running a complete test suite, it would be helpful if exceptions that caused a test to fail would appear in my (SLF4J-)log. What is the best method to achieve this
This seems so easy that I think I am wrong and you are asking something different, but maybe I can help:
JUnit 4.X
@Test(expected=Exception.class)
is going to pass the test if the exception is thrown in the test, or fail with a message captured by the Junit framework