1
0
cucumber-js-demo/3bg/features/addition.feature
2018-11-10 20:06:38 +01:00

15 lines
259 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: Add numbers
When I add 6
Then the result should be 11
Scenario: Add numbers
When I add 25
Then the result should be 30