I have a Java 8 Spring-batch application with Cucumber testing framework.
Spring 4.3; cucumber-juni 1.2.5; cucumber-java 1.1.8
My backing class implements a Spring Framework Rest Template, which calls the api under test and returns a rather large JSON string.
My question is - what facilities come packaged in Cucumber framework for converting the JSON payload into a POJO?
I'd really appreciate an example on how to do that in Cucumber without bringing in other dependencies from outside, please.