❤️❤️❤️SSM专栏更新中,各位大佬觉得写得不错,支持一下,感谢了!❤️❤️❤️
Spring + Spring MVC + MyBatis_冷兮雪的博客-CSDN博客
Spring Boot 中进行单元测试是一个常见的做法,可以帮助你验证应用程序的各个组件是否按预期工作。所以我们有必要去学习一番!
单元测试(unit testing),是指对软件中的最小可测试单元进行检查和验证的过程就叫单元测试。单元测试是开发者编写的一小段代码,用于检验被测代码的⼀个很小的、很明确的(代码)功能是否正确。执行单元测试就是为了证明某段代码的执行结果是否符合我们的预期。如果测试结果符合我们的预期,称之为测试通过,否则就是测试未通过(或者叫测试失败)。
Spring Boot 项目创建时会默认单元测试框架 spring-boot-test,而这个单元测试框架主要是依靠另⼀ 个著名的测试框架 JUnit 实现的,打开 pom.xml 就可以看到,以下信息是 Spring Boot 项目创建是自动添加的:
org.springframework.boot
spring-boot-starter-test
test
而 spring-boot-starter-test 的 MANIFEST.MF(Manifest 文件是用来定义扩展或档案打包的相关信息的)里面有具体的说明,如下信息所示:
在需要进行单元测试的类里面右键:
UserMapperTest生成在text目录下:
package com.example.ssmdemo1.mapper;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class UserMapperTest {
@Test
void getUserById() {
}
}
这个时候,此方法是不能调用到任何单元测试的方法的,此类只生成了单元测试的框架类,具体的业务代码要自己填充。
package com.example.ssmdemo1.mapper;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import static org.junit.jupiter.api.Assertions.*;
@SpringBootTest//表明当前单元测试是运行在Spring Boot环境中的
class UserMapperTest {
@Test
void getUserById() {
}
}
package com.example.ssmdemo1.mapper;
import com.example.ssmdemo1.entity.Userinfo;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import static org.junit.jupiter.api.Assertions.*;
@SpringBootTest//1、表明当前单元测试是运行在Spring Boot环境中的
class UserMapperTest {
//2、注入测试对象
@Autowired
private UserMapper userMapper;
@Test
void getUserById() {
//3、添加单元测试的业务代码
Userinfo userinfo=userMapper.getUserById(1);
System.out.println(userinfo);
}
}
启动测试项目:
我们进行单元测试, 后面需要运行去运行我的项目,我们一定要将右上角重新切换过来:
方法 | 说明 |
assertEquals | 判断两个对象或两个原始类型是否相等 |
assertNotEquals | 判断两个对象或两个原始类型是否不相等 |
assertSame | 判断两个对象引用是否指向同一个对象 |
assertNotSame | 判断两个对象引用是否指向不同的对象 |
assertTrue | 判断给定的布尔值是否为 true |
assertFalse | 判断给定的布尔值是否为 false |
assertNull | 判断给定的对象引用是否为 nul |
assertNotNull | 判断给定的对象用是否不为 null |
断言:如果断言失败,则后面的代码都不会执行。
package com.example.ssmdemo1.mapper;
import com.example.ssmdemo1.entity.Userinfo;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import static org.junit.jupiter.api.Assertions.*;
@SpringBootTest//1、表明当前单元测试是运行在Spring Boot环境中的
class UserMapperTest {
//2、注入测试对象
@Autowired
private UserMapper userMapper;
@Test
void getUserById() {
//3、添加单元测试的业务代码
Userinfo userinfo=userMapper.getUserById(1);
System.out.println(userinfo);
//判断1是否等于2 简单断言
Assertions.assertEquals(1,2);
}
}
单元测试失败:
单元测试失败,这时候我们去打包也会打包失败:
打包成功: