I have some custom assertions that look like this ...
# strikt
v
I have some custom assertions that look like this
Copy code
val response: ResponseEntity<CustomerDto> = restTemplate.postForEntity("/api/v1/customers", HttpEntity(json, headers()))

        expectThat(response) {
            statusCodeIs(201)
            statusCodeIs2xxSuccess()
            statusCodeIs5xxServerError()
        }