16 lines
283 B
Gherkin
16 lines
283 B
Gherkin
Feature: Add Numbers
|
|
As a user of the calculator
|
|
I want to add 2 numbers
|
|
|
|
Background:
|
|
Given the start value is 5
|
|
|
|
Scenario Outline: Add numbers
|
|
When I add <summand>
|
|
Then the result should be <sum>
|
|
|
|
Examples:
|
|
| summand | sum |
|
|
| 6 | 11 |
|
|
| 25 | 30 |
|