Created
May 21, 2015 14:51
-
-
Save jak78/874c7ee377af50f4d985 to your computer and use it in GitHub Desktop.
Roman calculator examples
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