Specflow で example タグを使用する方法 gherkin Syntax での意味は何ですか。例やブログのリダイレクトが役立ちます、ありがとう
質問する
2121 次
1 に答える
4
githubの例から直接どうですか?
基本的に、これは通常、Scenario Outline
シナリオ全体を再入力することなく、異なる入力/出力データで同じシナリオを実行する方法にすぎません。通常、これは と見なされScenarios
ますが、Examples
も機能するようです。
例から:
次の 2 つのシナリオ:
Scenario: Title should be matched
When I perform a simple search on 'Domain'
Then the book list should exactly contain book 'Domain Driven Design'
Scenario: Space should be treated as multiple OR search
When I perform a simple search on 'Windows Communication'
Then the book list should exactly contain books 'Inside Windows SharePoint Services', 'Bridging the Communication Gap'
これと同じ シナリオ概要
@alternative_syntax
Scenario Outline: Simple search (scenario outline syntax)
When I perform a simple search on '<search phrase>'
Then the book list should exactly contain books <books>
Examples:
|search phrase |books |
|Domain |'Domain Driven Design' |
|Windows Communication |'Inside Windows SharePoint Services', 'Bridging the Communication Gap' |
于 2012-04-19T04:10:36.333 に答える