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