我的跑步者课程如下所示:
@RunWith(Cucumber.class)
@CucumberOptions(
plugin = { "pretty", "html:target/cucumber", "json:target/cucumber.json" },
glue = "glue path",
features = "feature path",
tags = {"@tags"}
)
public class TestClass{
}
我想知道是否有办法替换硬编码值,例如
glue = "**some path**", features = "**some feature**"
用常量还是变量?你能帮忙吗?
谢谢。