public void successful(String step) { currentStep = getStepDescription(step); notifier.fireTestStarted(currentStep); notifier.fireTestFinished(currentStep); finishedDescriptions.add(currentStep); }
public void beforeStory(StoryDefinition story, boolean embeddedStory) { notifier.fireTestStarted(storyDescription); }
public void failed(String step, Throwable e) { currentStep = getStepDescription(step); notifier.fireTestStarted(currentStep); notifier.fireTestFailure(new Failure(currentStep, e)); finishedDescriptions.add(currentStep); }
public void beforeScenario(String title) { notifier.fireTestStarted(currentScenario); }