0

私はjbehaveが初めてです。junit から jbehave を呼び出す必要があります。

jbehave で複数のテスト ケースを実行するにはどうすればよいですか。

4

1 に答える 1

0

これにより、複数のストーリーを書くことができます:

@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

于 2013-07-17T07:30:46.860 に答える