jck28-lucio-junit5简介、安装与准备

JUnit5 简介
JUnit Platform
JUnit Jupiter
JUnit Vintage

JUnit5 环境安装
Java
oJDK 11
编辑器
oIDEA(推荐)
oEclipse
oVScode
编译依赖
oMaven(推荐)
oGradle
oAnt
Maven 依赖
pom.xml 配置文件

org.springframework.boot spring-boot-starter-test test org.junit.vintage junit-vintage-engine org.junit.jupiter junit-jupiter 5.8.2 org.junit.platform junit-platform-runner 1.8.2 org.junit.platform junit-platform-launcher 1.8.2 org.junit.platform junit-platform-console-standalone 1.8.2 org.junit.vintage junit-vintage-engine 5.8.2 maven-surefire-plugin 2.22.2 Unit5 运行第一个测试脚本 package hogwarts;

import org.junit.jupiter.api.Test;

public class Introduction {

@Test
void testFirstJUnit5Demo(){
    System.out.println("Hello Hogwarts");
}

}
Unit5 运行第一个测试脚本(mvn 命令)
执行项目路径下的所有测试用例
mvn test