Uses of Interface
org.jbehave.core.reporters.StoryReporter

Packages that use StoryReporter
org.jbehave.core.configuration   
org.jbehave.core.reporters   
org.jbehave.core.steps   
 

Uses of StoryReporter in org.jbehave.core.configuration
 

Methods in org.jbehave.core.configuration that return StoryReporter
 StoryReporter UnmodifiableConfiguration.defaultStoryReporter()
           
 StoryReporter PropertyBasedConfiguration.defaultStoryReporter()
           If the system property PropertyBasedConfiguration.SILENT_SUCCESS is set, uses a SilentSuccessFilter to decorate the default StoryReporter.
 StoryReporter Configuration.defaultStoryReporter()
           
 StoryReporter UnmodifiableConfiguration.storyReporter(java.lang.String storyPath)
           
 StoryReporter Configuration.storyReporter(java.lang.String storyPath)
           
 

Methods in org.jbehave.core.configuration with parameters of type StoryReporter
 Configuration UnmodifiableConfiguration.useDefaultStoryReporter(StoryReporter storyReporter)
           
 Configuration Configuration.useDefaultStoryReporter(StoryReporter storyReporter)
           
 Configuration UnmodifiableConfiguration.useStoryReporter(java.lang.String storyPath, StoryReporter storyReporter)
           
 Configuration Configuration.useStoryReporter(java.lang.String storyPath, StoryReporter storyReporter)
           
 

Method parameters in org.jbehave.core.configuration with type arguments of type StoryReporter
 Configuration UnmodifiableConfiguration.useStoryReporters(java.util.Map<java.lang.String,StoryReporter> storyReporters)
           
 Configuration Configuration.useStoryReporters(java.util.Map<java.lang.String,StoryReporter> storyReporters)
           
 

Uses of StoryReporter in org.jbehave.core.reporters
 

Classes in org.jbehave.core.reporters that implement StoryReporter
 class ConsoleOutput
           Story reporter that outputs as TXT to System.out.
 class DelegatingStoryReporter
          Reporter which collects other StoryReporters and delegates all invocations to the collected reporters.
 class HtmlOutput
           Story reporter that outputs to a PrintStream, as HTML.
 class IdeOnlyConsoleOutput
          Outputs to the console only if running in an IDE.
 class PostStoryStatisticsCollector
           Reporter that collects statistics and writes them as properties to output stream after each story
 class 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, the Throwable that caused the failure is wrapped in a StepFailed together with the step during which the failure occurred.
 class TxtOutput
           Story reporter that outputs to a PrintStream, as TXT.
 class XmlOutput
           Story reporter that outputs to a PrintStream, as XML.
 

Methods in org.jbehave.core.reporters that return StoryReporter
 StoryReporter StoryReporterBuilder.build(java.lang.String storyPath)
           
 StoryReporter StoryReporterBuilder.reporterFor(java.lang.String storyPath, StoryReporterBuilder.Format format)
           
 

Methods in org.jbehave.core.reporters that return types with arguments of type StoryReporter
 java.util.Map<java.lang.String,StoryReporter> StoryReporterBuilder.build(java.util.List<java.lang.String> storyPaths)
           
 java.util.Collection<StoryReporter> DelegatingStoryReporter.getDelegates()
           
 

Constructors in org.jbehave.core.reporters with parameters of type StoryReporter
DelegatingStoryReporter(StoryReporter... delegates)
          Creates DelegatingStoryReporter with a given varargs of delegates
SilentSuccessFilter(StoryReporter delegate)
           
StepFailureDecorator(StoryReporter delegate)
           
 

Constructor parameters in org.jbehave.core.reporters with type arguments of type StoryReporter
DelegatingStoryReporter(java.util.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
 void StepResult.describeTo(StoryReporter reporter)
           
 void AbstractStepResult.Failed.describeTo(StoryReporter reporter)
           
 void AbstractStepResult.NotPerformed.describeTo(StoryReporter reporter)
           
 void AbstractStepResult.Pending.describeTo(StoryReporter reporter)
           
 void AbstractStepResult.Successful.describeTo(StoryReporter reporter)
           
 void AbstractStepResult.Ignorable.describeTo(StoryReporter reporter)
           
 void AbstractStepResult.Skipped.describeTo(StoryReporter reporter)
           
 



Copyright © 2003-2010. All Rights Reserved.