原文: https://howtodoinjava.com/junit5/junit5-maven-dependency/

了解使用 Maven 配置其 JUnit5 的不同模块,以及如何使用它们创建和执行测试。

请注意,JUnit5 在运行时需要 Java8。

1. JUnit5 Maven 依赖项

要通过 maven 运行 JUnit5 测试,您将至少需要两个依赖项。

  1. JUnit Jupiter 引擎依赖项


JUnit Jupiter 需要具有两个依赖项,即junit-jupiter-apijunit-jupiter-enginejunit-jupiter-api具有 junit 注解(例如@Test)以编写测试和扩展名,junit-jupiter-engine具有测试引擎实现,在运行时需要执行该引擎才能执行测试。
在内部,junit-jupiter-engine依赖于junit-jupiter-api,因此添加junit-jupiter-engine仅将两个依赖项都带入类路径。
您可以在此图像中了解各种 junit jar 之间的内部依赖项

  1. <dependency>
  2. <groupId>org.junit.jupiter</groupId>
  3. <artifactId>junit-jupiter-engine</artifactId>
  4. <version>5.5.2</version>
  5. </dependency>


我们来看看依赖树:
JUnit5 Maven 依赖项 - 图1
JUnit5 jupiter 引擎依赖树

  1. JUnit 平台运行器依赖项


在 JUnit4 环境中,需要junit-platform-runner用于在 JUnit 平台上执行测试和测试套件
在内部,junit-platform-runner依赖于junit-platform-suite-apijunit-platform-launcher,因此添加junit-jupiter-engine仅将所有三个依赖项引入类路径中。

  1. <dependency>
  2. <groupId>org.junit.platform</groupId>
  3. <artifactId>junit-platform-runner</artifactId>
  4. <version>${junit.platform.version}</version>
  5. <scope>test</scope>
  6. </dependency>


我们来看看依赖树:
JUnit5 Maven 依赖项 - 图2
JUnit5 平台运行器依赖树

2. 使用 JUnit5 执行 JUnit4 测试

要在 JUnit5 环境中执行 JUnit4 测试,您将需要JUnit Platform Surefire Provider插件。 只要您在 JUnit4 上配置test依赖项并将 JUnit Vintage TestEngine 实现添加到maven-surefire-plugin的依赖项中,它就可以运行基于 JUnit4 的测试,如下所示。

  1. <build>
  2. <plugins>
  3. <plugin>
  4. <artifactId>maven-surefire-plugin</artifactId>
  5. <version>2.19</version>
  6. <dependencies>
  7. <dependency>
  8. <groupId>org.junit.platform</groupId>
  9. <artifactId>junit-platform-surefire-provider</artifactId>
  10. <version>1.0.0-M4</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>org.junit.vintage</groupId>
  14. <artifactId>junit-vintage-engine</artifactId>
  15. <version>4.12.0-M4</version>
  16. </dependency>
  17. </dependencies>
  18. </plugin>
  19. </plugins>
  20. </build>
  21. <dependencies>
  22. <dependency>
  23. <groupId>junit</groupId>
  24. <artifactId>junit</artifactId>
  25. <version>4.12</version>
  26. <scope>test</scope>
  27. </dependency>
  28. </dependencies>

通过在pom.xml中进行上述配置,现在您可以使用 JUnit5 运行旧的测试。

3. JUnit5 Maven 示例

用于运行用 JUnit5 构建的测试的示例pom.xml文件如下:

  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  4. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.howtodoinjava</groupId>
  7. <artifactId>JUnit5Examples</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>1.8</maven.compiler.source>
  13. <maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
  14. <junit.jupiter.version>5.5.2</junit.jupiter.version>
  15. <junit.platform.version>1.5.2</junit.platform.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.junit.jupiter</groupId>
  20. <artifactId>junit-jupiter-engine</artifactId>
  21. <version>${junit.jupiter.version}</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.junit.platform</groupId>
  26. <artifactId>junit-platform-runner</artifactId>
  27. <version>${junit.platform.version}</version>
  28. <scope>test</scope>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <artifactId>maven-compiler-plugin</artifactId>
  35. <version>3.8.1</version>
  36. </plugin>
  37. <plugin>
  38. <artifactId>maven-surefire-plugin</artifactId>
  39. <version>2.22.2</version>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>

将我的问题放在评论部分。

学习愉快!

源码下载