You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

addition.feature 543 B

2 years ago
1234567891011121314151617
  1. # language: en
  2. Feature: Addition
  3. In order to avoid silly mistakes
  4. As a math idiot
  5. I want to be told the sum of two numbers
  6. Scenario Outline: Add two numbers
  7. Given I have entered <input_1> into the calculator
  8. And I have entered <input_2> into the calculator
  9. When I press <button>
  10. Then the result should be <output> on the screen
  11. Examples:
  12. | input_1 | input_2 | button | output |
  13. | 20 | 30 | add | 50 |
  14. | 2 | 5 | add | 7 |
  15. | 0 | 40 | add | 40 |

No Description

Contributors (1)