|
||||||||
|
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] (JBEHAVE-922) Parse ExamplesTa... Ghislain Nadeau (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-922) Parse Examp... Mauro Talevi (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-922) Parse Examp... Ghislain Nadeau (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-922) Parse Examp... Ghislain Nadeau (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-922) Parse Examp... Ghislain Nadeau (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-922) Parse Examp... Mauro Talevi (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-922) Parse Examp... Ghislain Nadeau (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-922) Parse Examp... Mauro Talevi (JIRA)
- [jbehave-dev] [jira] (JBEHAVE-922) Parse Examp... Ghislain Nadeau (JIRA)

Added support for manually-defined mapping (for example, enable mapping with third-party objects, which you cannot annotate).
Also added support for methods receiving a single object instead of a list.
the example now illustrate the 4 usage:
@Given("the following annotated single-element table: $table") public void givenExamplesAnnotatedPojo(MyAnnotatedPojo pojo){} @Given("the following non-annotated table: $table") public void givenExamplesNonAnnotatedPojo(List<MyNonAnnotatedPojo> pojos){} @Given("the following non-annotated single-element table: $table") public void givenExamplesAnnotatedPojo(MyNonAnnotatedPojo pojo){}