在jbehave中运行多个测试用例

时间:2013-07-16 09:26:04

标签: jbehave

我是jbehave的新手。我需要从junit打电话给jbehave。

如何在jbehave中运行多个测试用例。

1 个答案:

答案 0 :(得分: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