Package org.jbehave.core.reporters
Interface StoryReporter
-
- All Known Implementing Classes:
ANSIConsoleOutput
,ConcurrentStoryReporter
,ConsoleOutput
,ContextStoryReporter
,DelegatingStoryReporter
,HtmlOutput
,HtmlTemplateOutput
,IdeOnlyConsoleOutput
,JsonOutput
,JsonTemplateOutput
,JUnit4StoryReporter
,NullStoryReporter
,PostStoryStatisticsCollector
,PrintStreamOutput
,SilentSuccessFilter
,StepFailureDecorator
,TeamCityConsoleOutput
,TemplateableOutput
,TxtOutput
,XmlOutput
,XmlTemplateOutput
public interface StoryReporter
Allows the runner to report the state of running stories- Author:
- Elizabeth Keogh, Mauro Talevi
-
-
Method Summary
-
-
-
Method Detail
-
beforeStoriesSteps
void beforeStoriesSteps(StepCollector.Stage stage)
-
afterStoriesSteps
void afterStoriesSteps(StepCollector.Stage stage)
-
storyCancelled
void storyCancelled(Story story, StoryDuration storyDuration)
-
beforeStory
void beforeStory(Story story, boolean givenStory)
-
afterStory
void afterStory(boolean givenOrRestartingStory)
-
beforeScenarios
void beforeScenarios()
-
afterScenarios
void afterScenarios()
-
narrative
void narrative(Narrative narrative)
-
lifecycle
void lifecycle(Lifecycle lifecycle)
-
beforeStorySteps
void beforeStorySteps(StepCollector.Stage stage, Lifecycle.ExecutionType type)
-
afterStorySteps
void afterStorySteps(StepCollector.Stage stage, Lifecycle.ExecutionType type)
-
beforeScenarioSteps
void beforeScenarioSteps(StepCollector.Stage stage, Lifecycle.ExecutionType type)
-
afterScenarioSteps
void afterScenarioSteps(StepCollector.Stage stage, Lifecycle.ExecutionType type)
-
beforeComposedSteps
void beforeComposedSteps()
-
afterComposedSteps
void afterComposedSteps()
-
beforeScenario
void beforeScenario(Scenario scenario)
-
afterScenario
void afterScenario(Timing timing)
-
beforeGivenStories
void beforeGivenStories()
-
givenStories
void givenStories(GivenStories givenStories)
-
afterGivenStories
void afterGivenStories()
-
beforeExamples
void beforeExamples(List<String> steps, ExamplesTable table)
-
afterExamples
void afterExamples()
-
beforeStep
void beforeStep(Step step)
-
successful
void successful(String step)
-
ignorable
void ignorable(String step)
-
comment
void comment(String step)
-
pending
void pending(StepCreator.PendingStep step)
-
pending
@Deprecated void pending(String step)
Deprecated.Report pending step- Parameters:
step
- string representation of pending step
-
notPerformed
void notPerformed(String step)
-
failedOutcomes
void failedOutcomes(String step, OutcomesTable table)
-
dryRun
void dryRun()
-
pendingMethods
@Deprecated void pendingMethods(List<String> methods)
Deprecated.pendingMethod info is added as a part of each pending steppending(PendingStep)
Report list of pending methods- Parameters:
methods
- list of generated methods
-
-