将字符串添加到黄瓜功能的Java列表中

我想添加从黄瓜功能到列表中的字符串(不使用每个字符串的.add )。

例如,将以下字符串添加到列表“string1”,“string2”,“string3”

另外,如果我可以添加黄瓜功能来记录更多字符串,那将会很好,并且这些会自动添加到列表中。

我尝试用场景大纲创建一个表,但目前没有运气。


请在下面找到功能文件和步骤定义。 它将采用黄瓜表中的字符串列表,并将其添加到列表中而不使用.add。

Feature: Get the list of strings from table
Scenario: Get the list of strings
Given Get the strings from following table and print
|Value1|
|Value2|
|Value3|



@Given("^Get the strings from following table and print$")
public void get_the_strings_from_following_table_and_print(List<String> lstStr) throws Throwable {

    for(String str:lstStr)
        System.out.println(str);

}
链接地址: http://www.djcxy.com/p/82619.html

上一篇: Add strings into a java list on cucumber feature

下一篇: jvm .feature file from Gradle