目录
- 系列导航
- 简介
- 案例解析
- 源码解析
- Assertions与AssertNull
系列导航
点击跳转到系列博文目录导航
简介
junit5中的JUnit Jupiter提供了Assertions类来替代了junit4中的Assert类并且添加了一些新的方法,所以工作过程中完全可以使用Assertions代替Assert类。
其包名称为:org.junit.jupiter.api.Assertions
Assertions中提供的方法都是静态方法,我们可以通过import静态资源进行使用,例如:
import static org.junit.jupiter.api.