是否可以在Specflow中跨多个场景轮廓共享一组通用示例,而无需复制每个轮廓的示例集?
e.g。请原谅这个例子,但是Examples
在每个Scenario Outline
重复Examples
,我想知道是否可以宣告那些Scenario Outline
一次,并将它们用于每个Feature: Just an example about animals
Scenario Outline:
Given an <animal>
When something happens
Then this should be the outcome
Examples:
| animal |
| Dog |
| Cat |
Scenario Outline:
Given an <animal>
When something different happens
Then this other thing should be the outcome
Examples:
| animal |
| Dog |
| Cat |
{{1}} 1}}?
{{1}}
答案 0 :(得分:2)
看起来这在SpecFlow中实际上是不可能的。
答案 1 :(得分:1)
我不确定SepcFlow,但是我们在Cucumber中已经完成了这个,其中在这个实例中共享了Given步骤。
我希望SpecFlow以同样的方式工作。