15 lines
259 B
Gherkin
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
|