You have been given the following story
As a shopper
I want to scan my membership card
So that I get all the discounts I'm entitled to receive
Which of the following is the correct use of BDD to design test scenarios?
The correct use of Behavior-Driven Development (BDD) to design test scenarios involves specifying the behavior in a given-when-then format. This format helps to clarify the conditions under which a particular outcome should occur. Option A follows this structure correctly:
Giventhat the shopper scans their card (the precondition),
Whenthey checkout (the action),
Thenthey should receive all the quantity discounts for everything they have purchased (the expected outcome).
This scenario clearly outlines the behavior of the system in response to the user's actions, which is central to BDD.
Reference= The ISTQB Advanced Level Agile Technical Tester syllabus emphasizes the importance of creating testable acceptance criteria for a given user story using requirements engineering and test techniques, which include the application of BDD in the context of a given user story12.
Currently there are no comments in this discussion, be the first to comment!