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()
          Deprecated. Use StoryReporterBuilder
 StoryReporter PropertyBasedConfiguration.defaultStoryReporter()
          Deprecated. Use StoryReporterBuilder()
 StoryReporter Configuration.defaultStoryReporter()
          Deprecated. Use StoryReporterBuilder
 StoryReporter UnmodifiableConfiguration.storyReporter(String storyPath)
           
 StoryReporter Configuration.storyReporter(String storyPath)
           
 

Methods in org.jbehave.core.configuration with parameters of type StoryReporter
 Configuration UnmodifiableConfiguration.useDefaultStoryReporter(StoryReporter storyReporter)
           
 Configuration Configuration.useDefaultStoryReporter(StoryReporter storyReporter)
           
 

Uses of StoryReporter in org.jbehave.core.reporters
 

Classes in org.jbehave.core.reporters that implement StoryReporter
 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 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 HtmlTemplateOutput
          A templateable output that generates HTML.
 class IdeOnlyConsoleOutput
          Outputs to the console only if running in an IDE.
 class NullStoryReporter
           Null-object implementation of StoryReporter.
 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 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 XmlTemplateOuput
          A templateable output that generates XML.
 

Methods in org.jbehave.core.reporters that return StoryReporter
 StoryReporter StoryReporterBuilder.build(String storyPath)
           
 StoryReporter StoryReporterBuilder.ProvidedFormat.createStoryReporter(FilePrintStreamFactory factory, StoryReporterBuilder storyReporterBuilder)
           
abstract  StoryReporter Format.createStoryReporter(FilePrintStreamFactory factory, StoryReporterBuilder storyReporterBuilder)
           
 StoryReporter CrossReference.createStoryReporter(FilePrintStreamFactory factory, StoryReporterBuilder storyReporterBuilder)
           
 StoryReporter ConcurrentStoryReporter.getDelegate()
           
 StoryReporter StoryReporterBuilder.reporterFor(String storyPath, Format format)
           
 StoryReporter StoryReporterBuilder.reporterFor(String storyPath, StoryReporterBuilder.Format format)
           
 

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

Methods in org.jbehave.core.reporters with parameters of type StoryReporter
 void ConcurrentStoryReporter.DelayedMethod.invoke(StoryReporter delegate)
           
 StoryReporterBuilder StoryReporterBuilder.withReporters(StoryReporter... reporters)
           
 

Constructors in org.jbehave.core.reporters with parameters of type StoryReporter
ConcurrentStoryReporter(StoryReporter crossReferencing, StoryReporter delegate, boolean multiThreading)
           
DelegatingStoryReporter(StoryReporter... delegates)
          Creates DelegatingStoryReporter with a given varargs of delegates
SilentSuccessFilter(StoryReporter delegate)
           
StepFailureDecorator(StoryReporter delegate)
           
StoryReporterBuilder.ProvidedFormat(StoryReporter reporter)
           
 

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 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-2012. All Rights Reserved.