Maven 没有 运行 JUnit 5 测试

Maven not running JUnit 5 tests

我正在尝试进行简单的 junit 测试 运行 maven,但它没有检测到任何测试。我哪里错了?项目目录

Project -> src -> test-> java -> MyTest.java

结果:

Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.buildproftest.ecs</groupId>
    <artifactId>buildprofiletest</artifactId>
    <version>1.0-SNAPSHOT</version>
    
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>5.3.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.0</version>
                <configuration>
                    <debug>false</debug>
                    <optimize>true</optimize>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

Junit 测试用例

import org.junit.jupiter.api.Test;

public class MyTest {
    @Test
    public void printTest() {
        System.out.println("Running JUNIT test");
    }
}

响应是运行没有测试用例。

根据注释 (import org.junit.jupiter.api.Test),您正在尝试 运行 使用 Maven 进行 JUnit 5 测试。根据 documentation,您必须添加此依赖项:

<dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter-engine</artifactId>
    <version>5.3.1</version>
    <scope>test</scope>
</dependency>

您的 Maven 版本附带 maven-surefire-plugin 不支持 JUnit 5 的版本。您可以将 Maven 更新到最新版本。您还可以设置 maven-surefire-plugin:

的版本
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <!-- JUnit 5 requires Surefire version 2.22.0 or higher -->
    <version>2.22.0</version>
</plugin>

参见junit5-samples for this information

查看 Maven 存储库中的 Maven Surefire Plugin 工件。截至 2019-01 的版本 3.0.0-M3

junit-jupiter — JUnit 5 的更简单原型

似乎是正确的,但有点过时了。

从 JUnit 5.4 开始,您可以替换那些多个 Maven 工件

  • junit
  • junit-jupiter-api
  • junit-jupiter-engine

…只有一个神器:

…到 运行 JUnit 5 测试。

这个新工件是其他工件的集合,是简化 POM 文件的便捷包装器。

    <dependencies>

        <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter -->
        <!-- Provides everything you need to write JUnit 5 Jupiter tests. -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <version>5.7.0-M1</version>
            <scope>test</scope>
        </dependency>
        
    </dependencies>

这为您提供了编写和 运行 JUnit 5 Jupiter 测试所需的一切。

junit-vintage-engine 用于 JUnit 3 和 4 测试

如果您有旧的 JUnit 3 或 JUnit 4 legacy tests that you want to continue to run, add a second dependency, junit-vintage-engine

<dependencies>

    <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter -->
    <!-- Provides everything you need to write JUnit 5 Jupiter tests. -->
    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter</artifactId>
        <version>5.7.0-M1</version>
        <scope>test</scope>
    </dependency>

    <!-- https://mvnrepository.com/artifact/org.junit.vintage/junit-vintage-engine -->
    <!-- Enables any legacy JUnit 3 and JUnit 4 tests you may have. Not needed for JUnit 5 tests. -->
    <dependency>
        <groupId>org.junit.vintage</groupId>
        <artifactId>junit-vintage-engine</artifactId>
        <version>5.7.0-M1</version>
        <scope>test</scope>
    </dependency>

</dependencies>

maven-surefire-plugin

您还需要 Surefire plugin as shown in that 。请务必获取最新版本,因为 Surefire 最近有一些重要的 fixes/enhancements。当前版本为 3.0.0-M5。

在 maven surefire 的配置部分添加“include”,您的文本应以 Test.java 结尾并且它应该有效

<groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>3.0.0-M5</version>
            <configuration>
                <includes>
                    <include>**/*Test.java</include>
                </includes>
            </configuration>

我最近发现我必须在我的测试方法上添加前缀“test”才能让 maven 执行我的测试。

@Test
public void testStringsAreEqual() {
    var aString = "Walrus Code";

    Assertions.assertEquals(aString, "Walrus Code");
}

否则测试将被忽略...这是我的 pom 的一部分:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.8.1</version>
            <configuration>
                <source>11</source>
                <target>11</target>
            </configuration>
        </plugin>

        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>3.0.0</version>
            <configuration>
                <mainClass>com.myapp.Main</mainClass>
            </configuration>
        </plugin>
    </plugins>
</build>

<dependencies>
    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter</artifactId>
        <version>5.7.1</version>
        <scope>test</scope>
    </dependency>
</dependencies>

在我的例子中,除了接受的答案有 2 个更改(maven-surefire 插件版本和 org.junit.jupiter 的工件),我还必须添加一个更改。 (Java 使用的版本:11)

即使 org.jacoco.agent 是我的依赖项列表的一部分,它也需要添加到 < dependencyManagement > 标记中。这似乎已经自动解决了任何潜在的 version/enforced 依赖关系。

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.jacoco</groupId>
            <artifactId>org.jacoco.agent</artifactId>
            <version>${jacoco.version}</version>
            <classifier>runtime</classifier>
            <scope>test</scope>
        </dependency>
    </dependencies>
</dependencyManagement>
  • 我遇到了类似的问题,其中 junit @Test 注释可以工作,但 org.junit.jupiter.api.Test @Test 注释不起作用。

解决方法:

  • THIS 是有关如何配置 maven-surefire-plugin 并确保使用正确的 junit-jupiter-engine

    的专家官方指南
  • 指南有点混乱所以,这就是我的工作方式

1) 将引擎依赖添加到依赖块:

    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter-engine</artifactId>
        <version>5.6.2</version>
        <scope>test</scope>
    </dependency>

2) 将引擎依赖添加到 maven-surefire:

<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>3.0.0-M6</version>
            <dependencies>
                <dependency>
                    <groupId>org.junit.jupiter</groupId>
                    <artifactId>junit-jupiter-engine</artifactId>
                    <version>5.6.2</version>
                </dependency>
            </dependencies>
        </plugin>