如何在黄瓜 java 绑定中定义步骤定义时使用可变参数的力量。我有以下步骤
Given I have following product: prod1, prod2, prod3
我的步骤定义
@Given("^I have following product [(exhaustive list of products or pattern of the product names)]$")
public void stepDef(String...args)
{
//Process varargs array "args" in here
}
我知道解决方法可以是除了冒号后的完整字符串,然后在代码中使用 split(",") 打破字符串并将其转储到数组中。但我只想知道黄瓜本身是否支持可变参数模式。
蒂亚!!!