Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. Feature: Playing Connect Four
  2. Scenario Outline: Placing Tokens
  3. Given a grid with <Number> tokens in column <Column>
  4. When I place a token in that column
  5. Then that token should be in row <Row>
  6.  
  7. Examples:
  8. | Number | Column | Row |
  9. | 0 | B | 1 |
  10. | 2 | D | 3 |
  11. | 5 | F | 6 |
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement