Guest User

Untitled

a guest
Jul 21st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. Scenario Outline: Illegal Move
  2. Given I have a Black knight at D4
  3. And the valid moves are B3,B5,C2,C6,E2,E6,F3,F5
  4. And I have a White pawn at A1
  5. And the pawn moves to A2
  6. When the Knight moves to <Position>
  7. Then I should be shown "Illegal Move"
  8.  
  9. Scenarios: Positions
  10. |Position|
  11. |A1|
  12. |A2|
  13. |A3|
  14. |A4|
  15. |A5|
  16. |A6|
  17. |A7|
  18. |A8|
  19. |B1|
  20. |B2|
  21. |B4|
  22. |B6|
  23. |B7|
  24. |B8|
  25. |C1|
  26. |C3|
  27. |C4|
  28. |C5|
  29. |C7|
  30. |C8|
  31. |D1|
  32. |D2|
  33. |D3|
  34. |D4|
  35. |D5|
  36. |D6|
  37. |D7|
  38. |D8|
  39. |E1|
  40. |E3|
  41. |E4|
  42. |E5|
  43. |E7|
  44. |E8|
  45. |F1|
  46. |F2|
  47. |F4|
  48. |F6|
  49. |F7|
  50. |F8|
  51. |G1|
  52. |G2|
  53. |G3|
  54. |G4|
  55. |G5|
  56. |G6|
  57. |G7|
  58. |G8|
  59. |H1|
  60. |H2|
  61. |H3|
  62. |H4|
  63. |H5|
  64. |H6|
  65. |H7|
  66. |H8|
Add Comment
Please, Sign In to add comment