✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Т05. Что выведет следующий тест, если контроллер возвращает строку "Hello, World!"?
@Test
public void testHelloEndpoint() throws Exception {
mockMvc.perform(get("/hello"))
.andExpect(status().isOk())
.andExpect(content().string("Hello, World!"));
}