Uses of Interface
org.jbehave.scenario.reporters.ScenarioReporter

Packages that use ScenarioReporter
org.jbehave.scenario   
org.jbehave.scenario.reporters   
org.jbehave.scenario.steps   
 

Uses of ScenarioReporter in org.jbehave.scenario
 

Methods in org.jbehave.scenario that return ScenarioReporter
 ScenarioReporter PropertyBasedConfiguration.forReportingScenarios()
          If the system property org.jbehave.outputall is set to TRUE, uses a PrintStreamScenarioReporter; otherwise uses the default ScenarioReporter.
 ScenarioReporter MostUsefulConfiguration.forReportingScenarios()
          Reports failing or pending scenarios to System.out, while silently passing scenarios.
 ScenarioReporter Configuration.forReportingScenarios()
           
 

Uses of ScenarioReporter in org.jbehave.scenario.reporters
 

Classes in org.jbehave.scenario.reporters that implement ScenarioReporter
 class DelegatingScenarioReporter
          Reporter which collects other ScenarioReporters and delegates all invocations to the collected reporters.
 class HtmlPrintStreamScenarioReporter
           Scenario reporter that outputs to a PrintStream, as HTML.
 class PassSilentlyDecorator
          Swallows the reports from all scenarios that pass, providing output only for failing or pending scenarios.
 class PrintStreamScenarioReporter
           Scenario reporter that outputs to a PrintStream, defaulting to System.out.
 class StatisticsScenarioReporter
           Scenario reporter that collects statistics and stores them as properties to output stream
 class StepFailureScenarioReporterDecorator
           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 XmlPrintStreamScenarioReporter
           Scenario reporter that outputs to a PrintStream, as XML.
 

Fields in org.jbehave.scenario.reporters with type parameters of type ScenarioReporter
protected  java.util.Map<ScenarioReporterBuilder.Format,ScenarioReporter> ScenarioReporterBuilder.delegates
           
 

Methods in org.jbehave.scenario.reporters that return ScenarioReporter
 ScenarioReporter ScenarioReporterBuilder.build()
           
 ScenarioReporter ScenarioReporterBuilder.reporterFor(ScenarioReporterBuilder.Format format)
           
 

Methods in org.jbehave.scenario.reporters that return types with arguments of type ScenarioReporter
 java.util.Map<ScenarioReporterBuilder.Format,ScenarioReporter> ScenarioReporterBuilder.getDelegates()
           
 java.util.Collection<ScenarioReporter> DelegatingScenarioReporter.getDelegates()
           
 

Constructors in org.jbehave.scenario.reporters with parameters of type ScenarioReporter
DelegatingScenarioReporter(ScenarioReporter... delegates)
          Creates DelegatingScenarioReporter with a given varargs of delegates
PassSilentlyDecorator(ScenarioReporter delegate)
           
StepFailureScenarioReporterDecorator(ScenarioReporter delegate)
           
 

Constructor parameters in org.jbehave.scenario.reporters with type arguments of type ScenarioReporter
DelegatingScenarioReporter(java.util.Collection<ScenarioReporter> delegates)
          Creates DelegatingScenarioReporter with a given collections of delegates
 

Uses of ScenarioReporter in org.jbehave.scenario.steps
 

Methods in org.jbehave.scenario.steps with parameters of type ScenarioReporter
 void Steps.SilentStepResult.describeTo(ScenarioReporter reporter)
           
abstract  void StepResult.describeTo(ScenarioReporter reporter)
           
 void StepResult.Failed.describeTo(ScenarioReporter reporter)
           
 void StepResult.NotPerformed.describeTo(ScenarioReporter reporter)
           
 void StepResult.Ignorable.describeTo(ScenarioReporter reporter)
           
 void StepResult.Pending.describeTo(ScenarioReporter reporter)
           
 void StepResult.Success.describeTo(ScenarioReporter reporter)
           
 



Copyright © 2003-2010. All Rights Reserved.