Assertions类
按条件执行
标签(Tag)和自定义注解
参数化测试(Parameterized Tests)基础
参数化测试(Parameterized Tests)进阶
综合进阶(终篇)
本文是《JUnit5学习》系列的第六篇,一起来实战强大参数化测试(Parameterized Tests),即多次执行同一个测试方法,每次使用不同的参数;
由于参数化测试功能强大,内容也比前几篇的知识点多,为了方便大家阅读和实践,这里分为《基础》和《进阶》两篇来介绍,本篇以学习参数化测试(Parameterized Tests)的基础知识为主,包含以下内容:
极速体验;
版本依赖;
ValueSource数据源
null、空字符串数据源
枚举数据源
方法数据源
Csv格式数据源
Csv文件数据源
| 名称 | 链接 | 备注 |
| :-- | :-- | :-- |
| 项目主页 | https://github.com/zq2599/blog_demos | 该项目在GitHub上的主页 |
| git仓库地址(https) | https://github.com/zq2599/blog_demos.git | 该项目源码的仓库地址,https协议 |
| git仓库地址(ssh) | git@github.com:zq2599/blog_demos.git | 该项目源码的仓库地址,ssh协议 |
现在,咱们以最少的步骤体验最简单的参数化测试;
在父工程junitpractice里新建名为parameterized的子工程,pom.xml内容如下:
<project xmlns=“http://maven.apache.org/POM/4.0.0” xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance”
xsi:schemaLocation=“http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd”>
4.0.0
com.bolingcavalry
junitpractice
1.0-SNAPSHOT
…/pom.xml
com.bolingcavalry
parameterized
0.0.1-SNAPSHOT
parameterized
Demo project for parameterized expirence in Spring Boot junit
<java.version>1.8</java.version>
org.junit
junit-bom
5.7.0
pom
import
org.springframework.boot
spring-boot-starter-web
org.projectlombok
lombok
org.springframework.boot
spring-boot-starter-test
test
org.junit.jupiter
junit-jupiter
org.junit.jupiter
junit-jupiter
test
org.springframework.boot
spring-boot-maven-plugin
package com.bolingcavalry.parameterized.service.impl;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.MethodOrderer;
import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.TestMethodOrder;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;
import org.springframework.boot.test.context.SpringBootTest;
import static org.junit.jupiter.api.Assertions.assertTrue;
@SpringBootTest
@Slf4j
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
public class HelloTest {
@Order(1)
@DisplayName(“多个字符串型入参”)
@ParameterizedTest
@ValueSource(strings = { “a”, “b”, “c” })
void stringsTest(String candidate) {
log.info(“stringsTest [{}]”, candidate);
assertTrue(null!=candidate);
}
}
从上图可见执行参数化测试需要两步:首先用@ParameterizedTest取代@Test,表名此方法要执行参数化测试,然后用@ValueSource指定每次测试时的参数来自字符串类型的数组:{ “a”, “b”, “c” },每个元素执行一次;
至此,咱们已体验过最简单的参数化测试,可见就是想办法使一个测试方法多次执行,每次都用不同的参数,接下来有关参数化测试的更多配置和规则将配合实战编码逐个展开,一起来体验吧;
org.junit
junit-bom
5.7.0
pom
import
org.springframework.boot
spring-boot-starter-test
test
org.junit.jupiter
junit-jupiter
org.junit.jupiter
junit-jupiter
test
short
byte
int
long
float
double
char
boolean
java.lang.String
java.lang.Class
@Order(2)
@DisplayName(“多个int型入参”)
@ParameterizedTest
@ValueSource(ints = { 1,2,3 })
void intsTest(int candidate) {
log.info(“ints [{}]”, candidate);
assertTrue(candidate<3);
}
《一线大厂Java面试题解析+后端开发学习笔记+最新架构讲解视频+实战项目源码讲义》
【docs.qq.com/doc/DSmxTbFJ1cmN1R2dB】 完整内容开源分享
@ValueSource(strings = { null, “a”, “b”, “c” })
@NullSource
@ValueSource(strings = { “a”, “b”, “c” })
EnumSource可以让一个枚举类中的全部或者部分值作为测试方法的入参;
创建枚举类Types.java,用于接下来的实战,如下,很简单只有三个值:
public enum Types {
SMALL,
BIG,
UNKNOWN
}
@Order(6)
@DisplayName(“多个枚举型入参”)
@ParameterizedTest
@EnumSource
void enumSourceTest(Types type) {
log.info(“enumSourceTest [{}]”, type);
}
@EnumSource(names={“SMALL”, “UNKNOWN”})
@EnumSource(mode= EnumSource.Mode.EXCLUDE, names={“SMALL”, “UNKNOWN”})