I have a cucumber stepdef like this
Given the date of <date>
When blah blah
Then x y and z
Examples:
|2015-01-01|
|2045-01-01|
When I generate stepdefs off of this, I get @Given("^the date of (\\d+)-(\\d+)-(\\d+)$")
And the method is generated with three integers as parameters.
How can I tell Cucumber to treat it like a Java.Time LocalDate? Is there a way to create a mapper that Cucumber will understand? Or at the very least, is there a way to treat that date object as a string instead of three numbers?