use of org.jbehave.core.configuration.AnnotationBuilder in project jbehave-core by jbehave.
the class WeldAnnotationBuilderBehaviour method shouldBuildOnlyWeldStepsListIfAnnotationOrAnnotatedValuesNotPresent.
@Test
public void shouldBuildOnlyWeldStepsListIfAnnotationOrAnnotatedValuesNotPresent() {
AnnotationBuilder builderNotAnnotated = createBuilder(NotAnnotated.class);
Configuration configuration = builderNotAnnotated.buildConfiguration();
assertThatStepsInstancesAre(builderNotAnnotated.buildCandidateSteps(configuration), WeldStepBean.class);
}
Aggregations