}
public void shouldCatchAndReturnNullIfNoExceptionThrown() throws Exception {
UsingMatchers m = new UsingMatchers() {};
Exception exception = m.runAndCatch(IllegalArgumentException.class, EMPTY_BLOCK);
Ensure.that(exception, m.isNull());
}
public void shouldCatchAndRethrowExceptionOfAnUnexpectedType() throws Exception {
UsingMatchers m = new UsingMatchers() {};