I have a simple test set up in JUnit, along the lines of
public void testGetBar() throws MyException{
Foo f = new Foo();
f.setup();
assertEquals(new Bar("1234"), f.getBar());
}
Suppose getBar() threw a MyException: JUnit notes this as a test "in error", and I notice that I screwed up the method. Yay, unit testing works! However, I have no way of knowing what was wrong with my Foo object that made it throw when I tried to getBar() on it, without going back and e.g. running the test through a debugger, or adding a logging statement. Everybody says it's a bad idea catch exceptions in your JUnit tests, so it seems hamfisted to do this:
try{
assertEquals(new Bar("1234"), f.getBar());
} catch(MyException e) {
log.error(f.toString());
throw e;
}
but it's all I can think of. Is there no JUnit-y shorthand of saying "when there's an exception in this test, log out this, that, and the other object state (somehow)" to make it easy to figure out where things went wrong?