Hi, thanks for this great tool. I’m new to BDD, and testing in general, and have been reading Smart’s “BDD In Action”. He describes using Gherkin Scenario Outline syntax like this (from page 127):
Scenario Outline: Earning points on flights by Frequent Flyer status
Given I am a Frequent Flyer member
When I fly on a flight that is worth base points
Then I should earn a status bonus of
And I should have guaranteed minimum earned points of
And I should earn points in all
Examples:
status | base | bonus | minimum | total |
Standard | 139 | 74 | 0 | 439 |
Silver | 148 | 74 | 500 | 500 |
Silver | 439 | 220 | 500 | 659 |
… etc,
So obviously, from this, all scenarios in the Examples table run.
Is this syntax supported? Right now, all I see is that one can pass the data element into the “then” function and use that for multiple tests. However, running any scenarios where are defined results in blank values for the variables, and I don’t see how to make this work.
Thanks!