public void shouldNotPerformStepsAfterRestaringScenarioFailure() throws Throwable {
// Given
StoryReporter reporter = mock(ConcurrentStoryReporter.class);
Step firstStepNormal = mockSuccessfulStep("Given I succeed");
final RestartingScenarioFailure hi = new RestartingScenarioFailure("hi");
Step restartStep = new AbstractStep() {
private int count = 0;
public StepResult perform(UUIDExceptionWrapper storyFailureIfItHappened) {
if (count == 0) {
count++;
throw hi;