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(java.lang.String storyPath)
           
 

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

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

Constructors in org.jbehave.core with parameters of type StoryReporter
StoryConfiguration(Keywords keywords, StepCreator stepCreator, StoryParser storyParser, StoryLoader storyLoader, StoryPathResolver storyPathResolver, ErrorStrategy errorStrategy, StepdocReporter stepdocReporter, StepdocGenerator stepdocGenerator, StoryReporter storyReporter, StoryReporterBuilder storyReporterBuilder, 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 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
           Story reporter that outputs to a PrintStream, defaulting to System.out.
 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 StepFailure 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 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.