blob: 9809567fa03f1f370b77020258c3633f78bb4468 [file] [log] [blame]
Feature: Example cucumber use
Scenario Outline: I want to show how cucumber works
Given I have <number>
When I chose to increase it by <amount>
Then I should see <total>
Examples: Successful match
| number | amount | total |
| 2 | 5 | 7 |
| 3 | 3 | 6 |