我在Cucumber JVM中的情况,我需要运行整个“case.feature”文件,其中5个方案在语言1上设置,区域设置1第一次,然后运行相同的整个“案例”。功能“设置语言2,区域设置2第二次,有没有办法设置它?
示例:
答案 0 :(得分:1)
在黄瓜中使用Scenario Outlines,您想要的输入可以是表格格式,如下所示。
Scenario Outline: eating
Given there are <start> cucumbers
When I eat <eat> cucumbers
Then I should have <left> cucumbers
Examples:
| start | eat | left |
| 12 | 5 | 7 |
| 20 | 5 | 15 |