SpringBoot项目使用Junit进行单元测试
环境:Springboot 2.6.7
POM.xml文件
添加如下内容:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
单元测试类
import reactor.core.publisher.Mono;
import static net.bytebuddy.matcher.ElementMatchers.is;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
@SpringBootTest
@RunWith(SpringRunner.class)
@AutoConfigureMockMvc
public class UserServiceTest {
@Autowired
private UserService userService;
@Test
public void test() throws Exception{
}
private String getToken() {
return "";
}
@Test
public void testService() throws Exception {
Object o = userService.listUsers(0, 10);
System.out.println(JSONUtil.toJsonStr((((Mono)o).block())));
}
}
标签:SpringBoot,单元测试,static,test,import,Junit
From: https://www.cnblogs.com/zolmk/p/17354175.html