ensureThat(exception, isNotNull());
}
public void shouldRethrowExceptionsInStepsAsVerificationExceptions() throws Exception {
final Mock given = mock(GivenWithCleanUp.class, "given");
given.expects("setUp").will(throwException(new Exception()));
final Scenario scenario = new MultiStepScenario(){
public void specifySteps() {
given((Given) given);
}};