``` @Test fun `returns all fruit`() { ...
# http4k
d
Copy code
@Test
    fun `returns all fruit`() {
        client(Request(GET, "<http://localhost:$port/fruits>")) shouldMatch hasStatus(OK).and(
                Jackson.hasBody(Jackson.obj("lemons" to Jackson.number(42))
        ))
    }