Package | Description |
---|---|
org.jbehave.core | |
org.jbehave.core.configuration | |
org.jbehave.core.embedder | |
org.jbehave.core.steps |
Modifier and Type | Method and Description |
---|---|
Configuration |
ConfigurableEmbedder.configuration() |
Modifier and Type | Method and Description |
---|---|
void |
ConfigurableEmbedder.useConfiguration(Configuration configuration) |
Modifier and Type | Class and Description |
---|---|
class |
MostUsefulConfiguration
The configuration that works for most situations that users are likely to encounter.
|
class |
ParanamerConfiguration
The configuration that uses:
Paranamer : CachingParanamer
|
class |
PropertyBasedConfiguration
PropertyBasedConfiguration is backed by MostUsefulConfiguration as default,
but has different behaviour if certain system properties are set:
PropertyBasedConfiguration.FAIL_ON_PENDING : uses FailingUponPendingStep
PropertyBasedConfiguration.SILENT_SUCCESS : uses SilentSuccessFilter decorator
|
class |
UnmodifiableConfiguration
Decorator of Configuration that disables modification of configuration
elements.
|
Modifier and Type | Method and Description |
---|---|
Configuration |
AnnotationBuilder.buildConfiguration()
Builds a Configuration instance based on annotation
Configure
found in the annotated object instance |
Configuration |
UnmodifiableConfiguration.doDryRun(java.lang.Boolean dryRun) |
Configuration |
Configuration.doDryRun(java.lang.Boolean dryRun) |
Configuration |
UnmodifiableConfiguration.useDefaultStoryReporter(StoryReporter storyReporter) |
Configuration |
Configuration.useDefaultStoryReporter(StoryReporter storyReporter) |
Configuration |
UnmodifiableConfiguration.useFailureStrategy(FailureStrategy failureStrategy) |
Configuration |
Configuration.useFailureStrategy(FailureStrategy failureStrategy) |
Configuration |
UnmodifiableConfiguration.useKeywords(Keywords keywords) |
Configuration |
Configuration.useKeywords(Keywords keywords) |
Configuration |
UnmodifiableConfiguration.useParameterControls(ParameterControls parameterControls) |
Configuration |
Configuration.useParameterControls(ParameterControls parameterControls) |
Configuration |
UnmodifiableConfiguration.useParameterConverters(ParameterConverters parameterConverters) |
Configuration |
Configuration.useParameterConverters(ParameterConverters parameterConverters) |
Configuration |
UnmodifiableConfiguration.useParanamer(com.thoughtworks.paranamer.Paranamer paranamer) |
Configuration |
Configuration.useParanamer(com.thoughtworks.paranamer.Paranamer paranamer) |
Configuration |
Configuration.usePathCalculator(PathCalculator pathCalculator) |
Configuration |
UnmodifiableConfiguration.usePendingStepStrategy(PendingStepStrategy pendingStepStrategy) |
Configuration |
Configuration.usePendingStepStrategy(PendingStepStrategy pendingStepStrategy) |
Configuration |
UnmodifiableConfiguration.useStepCollector(StepCollector stepCollector) |
Configuration |
Configuration.useStepCollector(StepCollector stepCollector) |
Configuration |
Configuration.useStepdocReporter(StepdocReporter stepdocReporter) |
Configuration |
Configuration.useStepFinder(StepFinder stepFinder) |
Configuration |
UnmodifiableConfiguration.useStepMonitor(StepMonitor stepMonitor) |
Configuration |
Configuration.useStepMonitor(StepMonitor stepMonitor) |
Configuration |
UnmodifiableConfiguration.useStepPatternParser(StepPatternParser stepPatternParser) |
Configuration |
Configuration.useStepPatternParser(StepPatternParser stepPatternParser) |
Configuration |
UnmodifiableConfiguration.useStoryControls(StoryControls storyControls) |
Configuration |
Configuration.useStoryControls(StoryControls storyControls) |
Configuration |
UnmodifiableConfiguration.useStoryLoader(StoryLoader storyLoader) |
Configuration |
Configuration.useStoryLoader(StoryLoader storyLoader) |
Configuration |
UnmodifiableConfiguration.useStoryParser(StoryParser storyParser) |
Configuration |
Configuration.useStoryParser(StoryParser storyParser) |
Configuration |
UnmodifiableConfiguration.useStoryPathResolver(StoryPathResolver storyPathResolver) |
Configuration |
Configuration.useStoryPathResolver(StoryPathResolver storyPathResolver) |
Configuration |
UnmodifiableConfiguration.useStoryReporterBuilder(StoryReporterBuilder storyReporterBuilder) |
Configuration |
Configuration.useStoryReporterBuilder(StoryReporterBuilder storyReporterBuilder) |
Configuration |
UnmodifiableConfiguration.useViewGenerator(ViewGenerator viewGenerator) |
Configuration |
Configuration.useViewGenerator(ViewGenerator viewGenerator) |
Modifier and Type | Method and Description |
---|---|
java.util.List<CandidateSteps> |
AnnotationBuilder.buildCandidateSteps(Configuration configuration)
Builds CandidateSteps using annotation
UsingSteps found in the
annotated object instance and the configuration provided |
InjectableStepsFactory |
AnnotationBuilder.buildStepsFactory(Configuration configuration)
Builds the
InjectableStepsFactory using annotation
UsingSteps found in the annotated object instance and the
configuration provided |
Constructor and Description |
---|
UnmodifiableConfiguration(Configuration delegate) |
Modifier and Type | Method and Description |
---|---|
Configuration |
Embedder.configuration() |
Modifier and Type | Method and Description |
---|---|
void |
Embedder.reportStepdocs(Configuration configuration,
java.util.List<CandidateSteps> candidateSteps) |
void |
StoryRunner.run(Configuration configuration,
InjectableStepsFactory stepsFactory,
Story story,
MetaFilter filter,
StoryRunner.State beforeStories)
Runs a Story with the given steps factory, applying the given meta
filter, and staring from given state.
|
void |
StoryRunner.run(Configuration configuration,
java.util.List<CandidateSteps> candidateSteps,
Story story)
Runs a Story with the given configuration and steps.
|
void |
StoryRunner.run(Configuration configuration,
java.util.List<CandidateSteps> candidateSteps,
Story story,
MetaFilter filter)
Runs a Story with the given configuration and steps, applying the given
meta filter.
|
void |
StoryRunner.run(Configuration configuration,
java.util.List<CandidateSteps> candidateSteps,
Story story,
MetaFilter filter,
StoryRunner.State beforeStories)
Runs a Story with the given configuration and steps, applying the given
meta filter, and staring from given state.
|
StoryRunner.State |
StoryRunner.runBeforeOrAfterStories(Configuration configuration,
java.util.List<CandidateSteps> candidateSteps,
StepCollector.Stage stage)
Run steps before or after a collection of stories.
|
Story |
StoryRunner.storyOfPath(Configuration configuration,
java.lang.String storyPath)
Returns the parsed story from the given path
|
Story |
StoryRunner.storyOfText(Configuration configuration,
java.lang.String storyAsText,
java.lang.String storyId)
Returns the parsed story from the given text
|
void |
Embedder.useConfiguration(Configuration configuration) |
Constructor and Description |
---|
StoryManager(Configuration configuration,
EmbedderControls embedderControls,
EmbedderMonitor embedderMonitor,
java.util.concurrent.ExecutorService executorService,
InjectableStepsFactory stepsFactory,
StoryRunner storyRunner) |
Modifier and Type | Method and Description |
---|---|
Configuration |
Steps.configuration() |
Configuration |
CandidateSteps.configuration()
Returns the configuration
|
Constructor and Description |
---|
AbstractStepsFactory(Configuration configuration) |
InstanceStepsFactory(Configuration configuration,
java.util.List<?> stepsInstances) |
InstanceStepsFactory(Configuration configuration,
java.lang.Object... stepsInstances) |
Steps(Configuration configuration)
Creates Steps with given custom configuration for a class extending this
instance and containing the candidate step methods
|
Steps(Configuration configuration,
java.lang.Class<?> type,
InjectableStepsFactory stepsFactory)
Creates Steps with given custom configuration and a steps instance type
containing the candidate step methods.
|
Steps(Configuration configuration,
java.lang.Object instance)
Creates Steps with given custom configuration and a steps instance
containing the candidate step methods
|
Copyright © 2003-2014. All Rights Reserved.