@DisplayName(“多个字符串型入参”)
@ParameterizedTest
@ValueSource(strings = { “a”, “b”, “c” })
void stringsTest(String candidate) {
log.info(“stringsTest [{}]”, candidate);
assertTrue(null!=candidate);
}
}
- 执行该测试类,结果如下图:
-
从上图可见执行参数化测试需要两步:首先用@ParameterizedTest取代@Test,表名此方法要执行参数化测试,然后用@ValueSource指定每次测试时的参数来自字符串类型的数组:{ “a”, “b”, “c” },每个元素执行一次;
-
至此,咱们已体验过最简单的参数化测试,可见就是想办法使一个测试方法多次执行,每次都用不同的参数,接下来有关参数化测试的更多配置和规则将配合实战编码逐个展开,一起来体验吧;
版本要求
- 先看看SpringBoot-2.3.4.RELEASE间接依赖的junit-jupiter-5.6.2版本中,ParameterizedTest的源码,如下图红框所示,此时的ParameterizedTest还只是体验版:
- 再看看junit-jupiter-5.7.0版本的ParameterizedTest源码,此时已经是稳定版了:
- 综上所述,如果要使用参数化测试,最好是将junit-jupiter升级到5.7.0或更高版本,如果您的应用使用了SpringBoot框架,junit-jupiter是被spring-boot-starter-test间接依赖进来的,需要排除这个间接依赖,再手动依赖进来才能确保使用指定版本,在pom.xml中执行如下三步操作:
- dependencyManagement节点添加junit-bom,并指定版本号:
org.junit
junit-bom
5.7.0
pom
import
- 排除spring-boot-starter-test和junit-jupiter的间接依赖关系:
org.springframework.boot
spring-boot-starter-test
test
org.junit.jupiter
junit-jupiter
- 添加junit-jupiter依赖,此时会使用dependencyManagement中指定的版本号:
org.junit.jupiter
junit-jupiter
test
- 如下图,刷新可见已经用上了5.7.0版本:
- 版本问题解决了,接下来正式开始学习Parameterized Tests,先要了解的是有哪些数据源;
ValueSource数据源
- ValueSource是最简单常用的数据源,支持以下类型的数组:
short
byte
int
long
float
double
char
boolean
java.l