Uses of Interface
org.jbehave.core.steps.StepMonitor
-
Packages that use StepMonitor Package Description org.jbehave.core.annotations org.jbehave.core.configuration org.jbehave.core.embedder org.jbehave.core.steps -
-
Uses of StepMonitor in org.jbehave.core.annotations
Methods in org.jbehave.core.annotations that return types with arguments of type StepMonitor Modifier and Type Method Description Class<? extends StepMonitor>
stepMonitor()
-
Uses of StepMonitor in org.jbehave.core.configuration
Fields in org.jbehave.core.configuration declared as StepMonitor Modifier and Type Field Description protected StepMonitor
Configuration. stepMonitor
Silent monitoring that does not produce any noise of the step matching.Methods in org.jbehave.core.configuration that return StepMonitor Modifier and Type Method Description StepMonitor
Configuration. stepMonitor()
StepMonitor
UnmodifiableConfiguration. stepMonitor()
Methods in org.jbehave.core.configuration with parameters of type StepMonitor Modifier and Type Method Description Configuration
Configuration. useStepMonitor(StepMonitor stepMonitor)
Configuration
UnmodifiableConfiguration. useStepMonitor(StepMonitor stepMonitor)
-
Uses of StepMonitor in org.jbehave.core.embedder
Classes in org.jbehave.core.embedder that implement StepMonitor Modifier and Type Class Description class
MatchingStepMonitor
Constructors in org.jbehave.core.embedder with parameters of type StepMonitor Constructor Description MatchingStepMonitor(StepMonitor... delegates)
-
Uses of StepMonitor in org.jbehave.core.steps
Classes in org.jbehave.core.steps that implement StepMonitor Modifier and Type Class Description class
ContextStepMonitor
Decorator ofStepMonitor
which shows the current context via theContextView
.class
DelegatingStepMonitor
Monitor which collects otherStepMonitor
s and delegates all invocations to the collected monitors.class
NullStepMonitor
Null Object Pattern implementation ofStepMonitor
.class
PrintingStepMonitor
AbstractStepMonitor
that prints to output which should be defined in child implementations.class
PrintStreamStepMonitor
StepMonitor that prints to aPrintStream
, defaulting toSystem.out
.class
SilentStepMonitor
StepMonitor that prints nothings.Fields in org.jbehave.core.steps declared as StepMonitor Modifier and Type Field Description static StepMonitor
ParameterConverters. DEFAULT_STEP_MONITOR
Methods in org.jbehave.core.steps that return StepMonitor Modifier and Type Method Description protected StepMonitor
StepCandidate. getStepMonitor()
Methods in org.jbehave.core.steps with parameters of type StepMonitor Modifier and Type Method Description Map<StepCollector.Stage,List<Step>>
MarkUnmatchedStepsAsPending. collectLifecycleSteps(List<StepCandidate> stepCandidates, Lifecycle lifecycle, Meta storyAndScenarioMeta, Scope scope, StepMonitor stepMonitor)
Map<StepCollector.Stage,List<Step>>
StepCollector. collectLifecycleSteps(List<StepCandidate> stepCandidates, Lifecycle lifecycle, Meta storyAndScenarioMeta, Scope scope, StepMonitor stepMonitor)
Collects all lifecycle steps to execute perStepCollector.Stage
of executionList<Step>
MarkUnmatchedStepsAsPending. collectScenarioSteps(List<StepCandidate> stepCandidates, Scenario scenario, Map<String,String> parameters, StepMonitor stepMonitor)
List<Step>
StepCollector. collectScenarioSteps(List<StepCandidate> stepCandidates, Scenario scenario, Map<String,String> parameters, StepMonitor stepMonitor)
Collects all of theStep
s to execute for a scenario.void
BeforeOrAfterStep. useStepMonitor(StepMonitor stepMonitor)
void
StepCandidate. useStepMonitor(StepMonitor stepMonitor)
void
StepCreator. useStepMonitor(StepMonitor stepMonitor)
Constructors in org.jbehave.core.steps with parameters of type StepMonitor Constructor Description ContextStepMonitor(Context context, ContextView view, StepMonitor... delegates)
DelegatingStepMonitor(StepMonitor... delegates)
Creates DelegatingStepMonitor with a given varargs of delegatesParameterConverters(StepMonitor monitor, Keywords keywords, ResourceLoader resourceLoader, ParameterControls parameterControls, TableParsers tableParsers, TableTransformers tableTransformers, Locale locale, String collectionSeparator, boolean threadSafe)
Creates a ParameterConverters for the given StepMonitor, keywords, Locale, list separator and thread-safety.ParameterConverters(StepMonitor monitor, Keywords keywords, ResourceLoader resourceLoader, ParameterControls parameterControls, TableTransformers tableTransformers)
Creates a ParameterConverters using given StepMonitor, keywords, resource loader and table transformers.ParameterConverters(StepMonitor monitor, Keywords keywords, ResourceLoader resourceLoader, ParameterControls parameterControls, TableTransformers tableTransformers, Locale locale, String collectionSeparator, boolean threadSafe)
Creates a ParameterConverters for the given StepMonitor, keywords, Locale, list separator and thread-safety.ParameterConverters(StepMonitor monitor, ResourceLoader resourceLoader, ParameterControls parameterControls, TableTransformers tableTransformers)
Creates a ParameterConverters using given StepMonitor, resource loader and table transformers.ParameterConverters(StepMonitor monitor, ResourceLoader resourceLoader, ParameterControls parameterControls, TableTransformers tableTransformers, Locale locale, String collectionSeparator, boolean threadSafe)
Creates a ParameterConverters for the given StepMonitor, Locale, list separator and thread-safety.StepCreator(Class<?> stepsType, InjectableStepsFactory stepsFactory, StepsContext stepsContext, ParameterConverters parameterConverters, ParameterControls parameterControls, StepMatcher stepMatcher, StepMonitor stepMonitor)
Constructor parameters in org.jbehave.core.steps with type arguments of type StepMonitor Constructor Description DelegatingStepMonitor(Collection<StepMonitor> delegates)
Creates DelegatingStepMonitor with a given collections of delegates
-