You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently JGiven creates data tables if parameters of cases are different. However, if arguments differ that are no parameters, data tables are not generated.
Example:
Case 1: a = 5
Given some 5
When foo 6
Then bar
Case 2: a = 7
Given some 7
When foo 8
Then bar
As the argument of foo is not a parameter, no data table is generated.
Desired output:
Given some <a>
When foo <b>
Then bar
| a | b |
| 5 | 6 |
| 7 | 8 |
The name of the variable should be derived from the variable name of the called method
The text was updated successfully, but these errors were encountered:
Currently JGiven creates data tables if parameters of cases are different. However, if arguments differ that are no parameters, data tables are not generated.
Example:
As the argument of foo is not a parameter, no data table is generated.
Desired output:
The name of the variable should be derived from the variable name of the called method
The text was updated successfully, but these errors were encountered: