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

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

Uses of StoryReporter in org.jbehave.core
 

Methods in org.jbehave.core that return StoryReporter
 StoryReporter UnmodifiableStoryConfiguration.storyReporter()
           
 StoryReporter StoryConfiguration.storyReporter()
           
 StoryReporter PropertyBasedStoryConfiguration.storyReporter()
          If the system property org.jbehave.outputall is set to TRUE, uses a PrintStreamStoryReporter; otherwise uses the default StoryReporter.
 StoryReporter StoryConfiguration.storyReporter(String storyPath)
           
 

Methods in org.jbehave.core with parameters of type StoryReporter
 void StoryConfiguration.addStoryReporter(String storyPath, StoryReporter storyReporter)
           
 void UnmodifiableStoryConfiguration.useStoryReporter(StoryReporter storyReporter)
           
 void StoryConfiguration.useStoryReporter(StoryReporter storyReporter)
           
 

Constructors in org.jbehave.core with parameters of type StoryReporter
StoryConfiguration(KeyWords keywords, StepCreator stepCreator, StoryDefiner storyDefiner, StoryPathResolver storyPathResolver, ErrorStrategy errorStrategy, StepdocReporter stepdocReporter, StepdocGenerator stepdocGenerator, StoryReporter storyReporter, PendingErrorStrategy pendingErrorStrategy)
          Constructor that allows all dependencies to be injected
 

Uses of StoryReporter in org.jbehave.core.reporters
 

Classes in org.jbehave.core.reporters that implement StoryReporter
 class DelegatingStoryReporter
          Reporter which collects other StoryReporters and delegates all invocations to the collected reporters.
 class HtmlPrintStreamStoryReporter
           Scenario reporter that outputs to a PrintStream, as HTML.
 class PassSilentlyDecorator
          Swallows the reports from all stories that pass, providing output only for failing or pending stories.
 class PrintStreamStoryReporter
           Scenario reporter that outputs to a PrintStream, defaulting to System.out.
 class StatisticsStoryReporter
           Scenario reporter that collects statistics and stores them as properties to output stream
 class StepFailureStoryReporterDecorator
           When a step fails, the Throwable that caused the failure is wrapped in a StepFailure together with the step during which the failure occurred.
 class XmlPrintStreamStoryReporter
           Scenario reporter that outputs to a PrintStream, as XML.
 

Fields in org.jbehave.core.reporters with type parameters of type StoryReporter
protected  Map<StoryReporterBuilder.Format,StoryReporter> StoryReporterBuilder.delegates
           
 

Methods in org.jbehave.core.reporters that return StoryReporter
 StoryReporter StoryReporterBuilder.build()
           
 StoryReporter StoryReporterBuilder.reporterFor(StoryReporterBuilder.Format format)
           
 

Methods in org.jbehave.core.reporters that return types with arguments of type StoryReporter
 Map<StoryReporterBuilder.Format,StoryReporter> StoryReporterBuilder.getDelegates()
           
 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
PassSilentlyDecorator(StoryReporter delegate)
           
StepFailureStoryReporterDecorator(StoryReporter delegate)
           
 

Constructor parameters in org.jbehave.core.reporters with type arguments of type StoryReporter
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
 void Steps.SilentStepResult.describeTo(StoryReporter reporter)
           
abstract  void StepResult.describeTo(StoryReporter reporter)
           
 void StepResult.Failed.describeTo(StoryReporter reporter)
           
 void StepResult.NotPerformed.describeTo(StoryReporter reporter)
           
 void StepResult.Ignorable.describeTo(StoryReporter reporter)
           
 void StepResult.Pending.describeTo(StoryReporter reporter)
           
 void StepResult.Success.describeTo(StoryReporter reporter)
           
 



Copyright © 2003-2010. All Rights Reserved.