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 回答