This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
Feature: Sum Pairs
It sums pairs of numbers
Scenario Outline: adds x + y to equal sum
Given x is <x>
When add <y>
Then the sum is <sum>
Examples:
| x | y | sum |
| 1 | 2 | 3 |
| 0 | 1 | 1 |
| -1 | 1 | 0 |
| 1 | 0 | 1 |
view raw
sum_pairs.feature
hosted with ❤ by
GitHub