I have this feature file:
Scenario Outline: Example
Given I am a user
When I enter <x> as an amount
Then the result should be <result>
Examples:
| x | result |
| 3 | 3 |
| 1 | 1 |
My issue is that after it's run, each example is labeled as variant #
Is there a way to name what each example line is actually testing, so that in the report, we know better what is tested, not just:
Scenario: Example, Variant 0
Scenario: Example, Variant 1
Scenario: Example, Variant 2
I'm trying to help our testers get more meaningful reports; there is typically a reason they write multiple examples, and they want that reason for that example shown somehow.