Files
mylibrary/src/test/resources/features/review.feature

18 lines
983 B
Gherkin
Raw Normal View History

2025-06-12 20:02:10 +02:00
# language: en
Feature: Manage reviews
Background:
2025-06-13 22:59:51 +02:00
Given the review system has the following review customers:
2025-06-12 20:02:10 +02:00
| id | firstName | lastName | phoneNumber | loyaltyPoints |
| 33333333-3333-3333-3333-333333333333 | Carol | White | 0600000003 | 50 |
2025-06-13 22:59:51 +02:00
And the review system has the following books:
2025-06-12 20:02:10 +02:00
| isbn | title | author | publisher | publicationDate | price | quantity | language |
| 978333333 | Book B | Author B | PubB | 2020-01-01 | 18.0 | 5 | EN |
2025-06-12 22:44:25 +02:00
| 978444444 | Book C | Author C | PubC | 2021-06-15 | 22.0 | 3 | FR |
2025-06-13 22:59:51 +02:00
And the review system has the following reviews:
2025-06-12 20:02:10 +02:00
| reviewId | bookId | customerName | comment | rating |
| rev-1 | 978333333 | Carol White | Great book! | 5 |
2025-06-13 22:59:51 +02:00
# ...existing scenarios...