Gokul
10/24/2018, 12:40 AMdata class RequestBody(
@field:NotNull(message = "amount is required")
@field:Min(value = 1, message = "amount needs to greater than 0")
val amount: Long,
@field:NotBlank(message = "name is required ")
val name: String)
Using MockMvc I was able to test the response status but the response body did not contain any response body. Am I missing something here?