Spring Boot - Testing Spring Boot Applications
Given the following test snippet, what HTTP status code will be asserted?
mockMvc.perform(get("/hello"))
.andExpect(status().isOk());