忽略了cucumber-jvm中的功能

时间:2013-09-19 11:13:30

标签: cucumber-jvm

我知道你可以为功能指定标签,然后在命令行上运行黄瓜时忽略它们。但我正在使用cucumber-jvm并从maven运行它。 @ignore不起作用,我不知道如何将被忽略的标签传递给执行Gherkin测试的跑步者。

解决方法是在开发和测试新目录时将功能移动到另一个目录,但这不是它应该如何。其他用户如何处理这种不足?

2 个答案:

答案 0 :(得分:22)

你可以告诉跑步者跳过@ignore

import org.junit.runner.RunWith;
import cucumber.api.junit.Cucumber;

@RunWith(Cucumber.class)
@Cucumber.Options(features = {"classpath:my_feature.feature"},
tags = {"~@ignore"})
public class RunCukesTest {
}

答案 1 :(得分:7)

您可以将方案标记为@ignore,这将被忽略。

如果您只想运行选择性方案,请将您要测试的每个新功能标记为@new_test。告诉Cukes Runner只运行tags = @new_test

import org.junit.runner.RunWith;
import cucumber.api.junit.Cucumber;

@RunWith(Cucumber.class)
@Cucumber.Options(features = {"classpath:my_feature.feature"},
tags = {"@new_test"})
public class RunCukesTest {

}

您不想测试的任何内容都不应该有标签或者应该有其他标签名称