summaryrefslogtreecommitdiff
path: root/4outline/features/addition.feature
blob: 3b562e1784e67a8b742600a2bb4eb6bfd11700ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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  |