1
0
cucumber-js-demo/4outline/features/addition.feature

16 lines
283 B
Gherkin
Raw Normal View History

2018-11-10 20:06:38 +01:00
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 |