jbehave-junit-runner
jbehave-junit-runner copied to clipboard
Show no result when override candidateSteps() Method instead of stepsFactory()
When I override candidateSteps() Method (I know it is @deprecated) in my Test Class instead of stepsFactory(), I see no progress in JUnit Tab.
To reproduce this issue remove in ExampleScenarioJUnitStories stepsFactory() and write this:
@Override
public List<CandidateSteps> candidateSteps() {
return new InstanceStepsFactory(configuration(), new ExampleSteps()).createCandidateSteps();
}
http://i.imgur.com/ZncO3JU.png