私のランナークラスは次のようになります。
@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**"
定数または変数で?これを手伝ってもらえますか?
ありがとう。