In general, can we please not catch exceptions in tests, and instead bubble them up to the test framework? It's much more useful to me to see "NullPointerException at SomeClass (SomeClass:113)" than it is to see some message with just the string message from the Exception. I'm going to rework a few cases like this, but in general are people OK with this into the future?
--Glen