14 lines
274 B
Gherkin
14 lines
274 B
Gherkin
Feature: Add Numbers
|
|
As a user of the calculator
|
|
I want to add 2 numbers
|
|
|
|
Scenario: Add numbers
|
|
Given the start value is 5
|
|
When I add 6
|
|
Then the result should be 11
|
|
|
|
Scenario: Add numbers
|
|
Given the start value is 5
|
|
When I add 25
|
|
Then the result should be 30
|