我是jbehave的新手
我正试图通过junit执行jbehave。似乎jbehave只从类路径加载故事文件。是否可以将其配置为从用户定义的路径中获取故事文件。
public class AlgebraStory extends JUnitStories {
@Override
public Configuration configuration() {
return super.configuration()
.useStoryReporterBuilder(
new StoryReporterBuilder()
.withDefaultFormats()
.withFormats(CONSOLE, TXT));
}
@Override
public InjectableStepsFactory stepsFactory() {
return new InstanceStepsFactory(configuration(), new Calculator());
}
@Override
protected List<String> storyPaths() {
return new StoryFinder().findPaths((<user defined path>, "**/algebra_story.story", "");
}
}
以同样的方式可以在用户定义的路径中保存jbehave报告。