-
-
Save lborie/16a2c89d5e4c4f76e182 to your computer and use it in GitHub Desktop.
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
Feature: Add | |
Scenario Outline: Add | |
When I add <firstNumber> and <secondNumber> | |
Then the sum is <sum> | |
Examples: | |
| firstNumber | secondNumber | sum | | |
| I | I | II | | |
| I | II | III | | |
| II | I | III | | |
| II | II | IV | | |
| III | I | IV | | |
| I | III | IV | | |
| III | II | V | | |
| II | III | V | | |
| IV | I | V | | |
| I | IV | V | | |
| III | III | VI | | |
| III | IV | VII | | |
| III | V | VIII | | |
| III | VI | IX | | |
| V | V | X | | |
| IX | I | X | | |
| X | I | XI | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment