spring boot mvc mock kotlin 中的导入类型是什么,用于状态和 isOK

What is the import type in springboot mvc mock kotlin, for the status and the isOK

在 spring mvc mock kotlin 中,什么是 import class 状态和 isok

谢谢你

import ???
@Test
    fun findUser() {
        mockMvc.get("/users?id=99")
            .andExpect {
                status { isOk }
            }

以下应该有效:

import org.springframework.test.web.servlet.result.StatusResultMatchers

@Test
fun findUser() {
  mockMvc.get("/users?id=99")
      .andExpect {
          status { isOk() }
      }
}