我有问题我创建了一个测试方法,我在测试中有这样的一行:
when(teamService.createTeam(teamDto)).thenReturn(Response.ok().build());
但是响应方法是不认识的。当我想要导入它时,我可以从以下选择:
javax.xml.ws
apache.coyote
catalina.conector
nativesendbox
所有这些导入都是错误的。我想使用Spring-test-mvc中的响应,或者来自spring的其他实现,但是intellij不会识别它。 我有这种依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>