测试任务自动检测并执行测试源集中的所有单元测试。测试执行完成后会生成一个报告。支持JUnit 和 TestNG 测试。
1、默认测试目录及标准输出
2、Junit 使用
Gradle 对于Junit4.x 支持
dependencies {
testImplementation group: 'junit' ,name: 'junit', version: '4.12'
}
test {
useJUnit()
}
Gradle 对于Junit5.x 版本支持
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}
注意:无论是 Junt4.x 版本还是Junit5.x 版本,我们只需在 build.gradle 目录下执行gradle test 指令,gradle 就会帮我们执行所有的加了@Test 注解的测试,并生成测试报告。
测试报告在项目build-reports
目录下,浏览器打开index.html即可查看
3、包含和排除特定测试
test {
enabled true
useJUnit()
include 'com/**'
exclude 'com/abc/**'
}
gradle 在junit 中的批量测试,可以设置包含或者排除某些特定测试。
4、代码
build.gradle
dependencies {
// testImplementation group: 'junit' ,name: 'junit', version: '4.12'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
enabled(true)
useJUnitPlatform()//支持Junit5测试
//include('top/qaqaq/**')//指定生成某个包下的测试报告
exclude('top/qaqaq/**')//指定排除某个包下的测试报告
}
测试类
top.qaqaq.test.AppTest
public class AppTest {
@Test
public void testMethod1() {
System.out.println("test qaqaq method1");
}
}
top.bj.test.AppTest
public class AppTest {
@Test
public void testMethod1() {
System.out.println("test qaqaq method1");
}
}