13 lines
572 B
Gherkin
13 lines
572 B
Gherkin
Feature: Calculator
|
|

|
|
Simple calculator for adding **two** numbers
|
|
|
|
Link to a feature: [Calculator](UI/Features/Calculator.feature)
|
|
***Further read***: **[Learn more about how to generate Living Documentation](https://docs.specflow.org/projects/specflow-livingdoc/en/latest/LivingDocGenerator/Generating-Documentation.html)**
|
|
|
|
@mytag
|
|
Scenario: Add two numbers
|
|
Given the first number is 50
|
|
And the second number is 70
|
|
When the two numbers are added
|
|
Then the result should be 120 |