Uses of Interface
org.jbehave.core.reporters.StoryReporter
-
Packages that use StoryReporter Package Description org.jbehave.core.annotations org.jbehave.core.configuration org.jbehave.core.embedder org.jbehave.core.junit org.jbehave.core.reporters org.jbehave.core.steps -
-
Uses of StoryReporter in org.jbehave.core.annotations
Methods in org.jbehave.core.annotations that return types with arguments of type StoryReporter Modifier and Type Method Description Class<? extends StoryReporter>
defaultStoryReporter()
-
Uses of StoryReporter in org.jbehave.core.configuration
Fields in org.jbehave.core.configuration declared as StoryReporter Modifier and Type Field Description protected StoryReporter
Configuration. defaultStoryReporter
Reports stories to console outputMethods in org.jbehave.core.configuration that return StoryReporter Modifier and Type Method Description StoryReporter
Configuration. defaultStoryReporter()
StoryReporter
PropertyBasedConfiguration. defaultStoryReporter()
If the system propertyPropertyBasedConfiguration.SILENT_SUCCESS
is set, uses aSilentSuccessFilter
to decorate the default StoryReporter.StoryReporter
UnmodifiableConfiguration. defaultStoryReporter()
StoryReporter
Configuration. storyReporter(String storyPath)
StoryReporter
UnmodifiableConfiguration. storyReporter(String storyPath)
Methods in org.jbehave.core.configuration with parameters of type StoryReporter Modifier and Type Method Description Configuration
Configuration. useDefaultStoryReporter(StoryReporter storyReporter)
Configuration
UnmodifiableConfiguration. useDefaultStoryReporter(StoryReporter storyReporter)
-
Uses of StoryReporter in org.jbehave.core.embedder
Methods in org.jbehave.core.embedder that return StoryReporter Modifier and Type Method Description StoryReporter
PerformableTree.RunContext. reporter()
Methods in org.jbehave.core.embedder with parameters of type StoryReporter Modifier and Type Method Description PerformableTree.State
PerformableTree.State. run(Step step, List<StepResult> results, Keywords keywords, StoryReporter reporter)
-
Uses of StoryReporter in org.jbehave.core.junit
Classes in org.jbehave.core.junit that implement StoryReporter Modifier and Type Class Description class
JUnit4StoryReporter
-
Uses of StoryReporter in org.jbehave.core.reporters
Classes in org.jbehave.core.reporters that implement StoryReporter Modifier and Type Class Description class
ANSIConsoleOutput
Story reporter that outputs as ANSI-coded text to System.out.class
ConcurrentStoryReporter
When running a multithreading mode, reports cannot be written concurrently but should be delayed and invoked only at the end of a story, ensuring synchronization on the delegate responsible for the reporting.class
ConsoleOutput
Story reporter that outputs as TXT to System.out.class
ContextStoryReporter
class
DelegatingStoryReporter
Reporter which collects otherStoryReporter
s and delegates all invocations to the collected reporters.class
HtmlOutput
Story reporter that outputs to a PrintStream, as HTML.class
HtmlTemplateOutput
A templateable output that generates HTML.class
IdeOnlyConsoleOutput
Outputs to the console only if running in an IDE.class
JsonOutput
Story reporter that outputs to a PrintStream, as JSON.class
JsonTemplateOutput
A templateable output that generates JSON.class
NullStoryReporter
Null-object implementation ofStoryReporter
.class
PostStoryStatisticsCollector
Reporter that collects statistics and writes them as properties to output stream after each storyclass
PrintStreamOutput
Abstract story reporter that outputs to a PrintStream.class
SilentSuccessFilter
Filters out the reports from all stories that pass, The delegate receives output only for failing or pending stories.class
StepFailureDecorator
When a step fails, theThrowable
that caused the failure is wrapped in aStepFailed
together with the step during which the failure occurred.class
TeamCityConsoleOutput
Decorates console output to allow TeamCity build script interaction: * https://confluence.jetbrains.com/display/TCD9/Build+Script+Interaction+with+TeamCityclass
TemplateableOutput
Story reporter that outputs to a template.class
TxtOutput
Story reporter that outputs to a PrintStream, as TXT.class
XmlOutput
Story reporter that outputs to a PrintStream, as XML.class
XmlTemplateOutput
A templateable output that generates XML.Methods in org.jbehave.core.reporters that return StoryReporter Modifier and Type Method Description StoryReporter
StoryReporterBuilder. build(String storyPath)
StoryReporter
ContextOutput. createStoryReporter(FilePrintStreamFactory filePrintStreamFactory, StoryReporterBuilder storyReporterBuilder)
abstract StoryReporter
Format. createStoryReporter(FilePrintStreamFactory factory, StoryReporterBuilder storyReporterBuilder)
StoryReporter
StoryReporterBuilder.ProvidedFormat. createStoryReporter(FilePrintStreamFactory factory, StoryReporterBuilder storyReporterBuilder)
StoryReporter
ConcurrentStoryReporter. getDelegate()
StoryReporter
StoryReporterBuilder. reporterFor(String storyPath, Format format)
Methods in org.jbehave.core.reporters that return types with arguments of type StoryReporter Modifier and Type Method Description Map<String,StoryReporter>
StoryReporterBuilder. build(List<String> storyPaths)
Collection<StoryReporter>
DelegatingStoryReporter. getDelegates()
Methods in org.jbehave.core.reporters with parameters of type StoryReporter Modifier and Type Method Description void
ConcurrentStoryReporter.DelayedMethod. invoke(StoryReporter delegate)
StoryReporterBuilder
StoryReporterBuilder. withReporters(StoryReporter... reporters)
Constructors in org.jbehave.core.reporters with parameters of type StoryReporter Constructor Description ConcurrentStoryReporter(StoryReporter crossReferencing, List<StoryReporter> delegates, boolean multiThreading)
DelegatingStoryReporter(StoryReporter... delegates)
Creates DelegatingStoryReporter with a given varargs of delegatesProvidedFormat(StoryReporter reporter)
SilentSuccessFilter(StoryReporter delegate)
StepFailureDecorator(StoryReporter delegate)
Constructor parameters in org.jbehave.core.reporters with type arguments of type StoryReporter Constructor Description ConcurrentStoryReporter(StoryReporter crossReferencing, List<StoryReporter> delegates, boolean multiThreading)
DelegatingStoryReporter(Collection<StoryReporter> delegates)
Creates DelegatingStoryReporter with a given collections of delegates -
Uses of StoryReporter in org.jbehave.core.steps
Methods in org.jbehave.core.steps with parameters of type StoryReporter Modifier and Type Method Description void
AbstractStepResult.Comment. describeTo(StoryReporter reporter)
void
AbstractStepResult.Failed. describeTo(StoryReporter reporter)
void
AbstractStepResult.Ignorable. describeTo(StoryReporter reporter)
void
AbstractStepResult.NotPerformed. describeTo(StoryReporter reporter)
void
AbstractStepResult.Pending. describeTo(StoryReporter reporter)
void
AbstractStepResult.Skipped. describeTo(StoryReporter reporter)
void
AbstractStepResult.Successful. describeTo(StoryReporter reporter)
void
StepResult. describeTo(StoryReporter reporter)
StepResult
Step. doNotPerform(StoryReporter storyReporter, UUIDExceptionWrapper storyFailureIfItHappened)
StepResult
StepCreator.Comment. doNotPerform(StoryReporter storyReporter, UUIDExceptionWrapper storyFailureIfItHappened)
StepResult
StepCreator.ConditionalStep. doNotPerform(StoryReporter storyReporter, UUIDExceptionWrapper storyFailureIfItHappened)
StepResult
StepCreator.IgnorableStep. doNotPerform(StoryReporter storyReporter, UUIDExceptionWrapper storyFailureIfItHappened)
StepResult
StepCreator.ParametrisedStep. doNotPerform(StoryReporter storyReporter, UUIDExceptionWrapper storyFailureIfItHappened)
StepResult
StepCreator.PendingStep. doNotPerform(StoryReporter storyReporter, UUIDExceptionWrapper storyFailureIfItHappened)
StepResult
Step. perform(StoryReporter storyReporter, UUIDExceptionWrapper storyFailureIfItHappened)
StepResult
StepCreator.ConditionalStep. perform(StoryReporter storyReporter, UUIDExceptionWrapper storyFailureIfItHappened)
StepResult
StepCreator.ReportingAbstractStep. perform(StoryReporter storyReporter, UUIDExceptionWrapper storyFailure)
-