4

我在 Cucumber JVM 中的案例,我需要第一次在语言 1、区域设置 1 上设置5 个场景来运行整个“case.feature”文件,然后在语言 2、区域设置 2 上运行相同的整个“case.feature”设置时间,有没有办法设置这个?

例子:

  1. 语言 1 > 英语,区域设置 1 > 英语(美国)
  2. 语言 2 > 德语,区域设置 2 > 德语
4

1 回答 1

1

在黄瓜中使用场景大纲,其中您想要的输入可以是表格格式,如下所示。

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  |
于 2016-07-19T07:35:02.003 回答