Skip to content

Commit

Permalink
increased coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
sorosz89 committed Apr 13, 2018
1 parent 695e553 commit 4a89bb2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/data/input/scenarioOutlineExpander.feature
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ Feature: ScenariosOutlineExpander
I want to expand ScenarioOutlines to Scenarios
So that I can see final result/run them separately

Scenario Outline: Test without tag(<language>)
Given I am on Home page (<language>) user
Then I should be on Home page

Examples:
| language | title |
| EN | Welcome |

@tag1 @expand
Scenario Outline: Test language (<language>)
Given I am on Home page <language> user
Expand Down
5 changes: 5 additions & 0 deletions test/data/output/scenarioOutlineExpander.1.feature
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Feature: ScenariosOutlineExpander
I want to expand ScenarioOutlines to Scenarios
So that I can see final result/run them separately

@language(EN)
Scenario: Test without tag(EN)
Given I am on Home page (EN) user
Then I should be on Home page

@tag1 @expand @tag2 @language(EN)
Scenario: Test language (EN)
Given I am on Home page EN user
Expand Down
5 changes: 5 additions & 0 deletions test/data/output/scenarioOutlineExpander.2.feature
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Feature: ScenariosOutlineExpander
I want to expand ScenarioOutlines to Scenarios
So that I can see final result/run them separately

@language(EN)
Scenario: Test without tag(EN)
Given I am on Home page (EN) user
Then I should be on Home page

@tag1
Scenario Outline: Test language (<language>)
Given I am on Home page <language> user
Expand Down

0 comments on commit 4a89bb2

Please sign in to comment.