각 개요의 예제 세트를 복제하지 않고 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