Skip to content

Commit

Permalink
add scenario outline to test several cases
Browse files Browse the repository at this point in the history
  • Loading branch information
manudevelopia committed May 1, 2024
1 parent 4040cda commit 2ac1f80
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/test/resources/features/request.feature
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,13 @@ Feature: Request
Given path /users/1
When method get
Then status 200

Scenario Outline: Get user 1,2,3
Given path /users/<USER_ID>
When method get
Then status 200
Examples:
| USER_ID |
| 1 |
| 2 |
| 3 |

0 comments on commit 2ac1f80

Please sign in to comment.