Matt
06/26/2018, 11:37 AMwithTestApplication
to test my microservice, and wanted to send it data classes rather than JSON strings, and receive unmarshalled data classes as responses (rather than raw JSON strings from HTTP response bodies). Is it a case of just using Jackson directly, or is there any special support available in Ktor for this?cy
06/26/2018, 12:28 PMcy
06/26/2018, 12:29 PMMatt
06/26/2018, 12:50 PMTestApplicationRequest.setBody(requestObject)
and TestApplicationResponse.bodyAs<ResponseDTO>
Matt
06/26/2018, 12:50 PM