Guest User

Untitled

a guest
Jun 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Feature: Calculator
  2.  
  3. Scenario Outline: Add two numbers
  4.  
  5. Given I have entered <a> into the calculator
  6. And I have entered <b> into the calculator
  7. When I press add
  8. Then the result should be <result> on the screen
  9.  
  10. @source:CalculatorExamples.xlsx
  11. Examples:
  12. | case | a | b | result |
Add Comment
Please, Sign In to add comment