各アウトラインの例のセットを複製することなく、Specflowの複数のシナリオアウトライン間で共通の例のセットを共有することは可能ですか?
たとえば、うなずく例を言い訳しますが、ここでは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 |