|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
- [jbehave-dev] [jira] Created: (JBEHAVE-652) ... Andreas Ebbert-Karroum (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-652) Cann... John Gkionis (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-652) Cann... Mauro Talevi (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-652) Cann... Mauro Talevi (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-652) Cann... Mauro Talevi (JIRA)

After some trial and error we found that using:
new MostUsefulConfiguration().useParameterControls(new ParameterControls("<", ">", true));
and implement steps as:
@Given("a user $user has borrowed books $isbns")
public void createListOfBorrowedBooks(String user, String isbns) throws SQLException{
}
gives a much more natural behaviour on how parameters are passed to step implementations.