Add code
This commit is contained in:
15
4outline/features/addition.feature
Normal file
15
4outline/features/addition.feature
Normal file
@ -0,0 +1,15 @@
|
||||
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 |
|
Reference in New Issue
Block a user