Hola, escribí el código tal y como lo ha presentado el instructor sin embargo me aparece el siguiente error
Esté es el código que he utilizado
package med.voll.api.controller;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.HttpStatus;
import org.springframework.security.test.context.support.WithMockUser;
import org.springframework.test.web.servlet.MockMvc;
import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
@SpringBootTest
@AutoConfigureMockMvc
class ConsultaControllerTest {
@Autowired
private MockMvc mvc;
@Test
@DisplayName("Deberia retornar un estado 400 cuando los datos ingresados sean invalidos")
@WithMockUser
void agendarEscenario1() throws Exception {
//given //when
var response = mvc.perform(post("/consultas")).andReturn().getResponse();
//then
assertThat(response.getStatus()).isEqualTo(HttpStatus.BAD_REQUEST.value());
}
}