アウトラインごとに一連のサンプルを複製せずに、Specflowの複数のシナリオアウトラインにわたって共通のサンプルセットを共有することは可能ですか?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 |
私はこのことについて自分自身が不思議です。将来可能であれば、これを持つことは非常に便利です。 – MichaelF