Hi folks !
Simple question : is there any way to provide custom JSON Serializer to rest assured ?
I am using Joda time in my project, with things like LocalTime or DateTime, and I don't want to serialize them the way jackon does by default.
In my code, I already defined custom jackson serializers for this types, but I don't think I can't reuse them in rest assured (since we cannot access underlying jackson ObjectMapper object to add custom serializers).
At least, would there be a backdoor somewhere allowing to either have access to ObjectMapper or rest assured JSON serialization ?
Thanks in advance !
Frédéric