一、测试一般程序
1.1 测试步骤
- 在
pom.xml中加入测试环境的依赖。 - 在测试类上加入
@RunWith(SpringRunner.class)与@SpringBootTest注解。
1.2 简单测试例子
在pom.xml 中引入相关依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
要测试的程序代码
@Repository
public class UserDao {
public void addUser(String username){
if(username.equals("zhangsan")){
System.out.println("===============");
}else {
System

本文介绍了Spring Boot的集成测试,包括测试一般程序的步骤和简单例子,重点讲解了如何测试Controller,分别展示了使用MockMvc和@WebMvcTest注解的方式,并对两者进行了总结,强调了它们的区别和使用场景。
最低0.47元/天 解锁文章
1441

被折叠的 条评论
为什么被折叠?



