私はjbehaveが初めてです。junit から jbehave を呼び出す必要があります。
jbehave で複数のテスト ケースを実行するにはどうすればよいですか。
これにより、複数のストーリーを書くことができます:
@Override
protected List<String> storyPaths() {
return new StoryFinder()
.findPaths(codeLocationFromClass(embeddableClass).getFile(), asList("**/*.story"), null);
}
実行するストーリーを指定することもできます。たとえば、これはすべての購入ストーリーを実行します。
...asList("**/purchasing-*.story"), null)
ソース: http://jbehave.org/reference/stable/developing-stories.html#configuring