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 | | |