Surefire没有接受Junit 5测试


113

我用JUnit 5编写了一个简单的测试方法:

public class SimlpeTest {
    @Test
    @DisplayName("Some description")
    void methodName() {
        // Testing logic for subject under test
    }
}

但是当我跑步时mvn test,我得到了:

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running SimlpeTest
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec

Results :

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

不知何故,surefire无法识别该测试类。我的pom.xml样子是:

<properties>
    <java.version>1.8</java.version>
    <junit.version>5.0.0-SNAPSHOT</junit.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.junit</groupId>
        <artifactId>junit5-api</artifactId>
        <version>${junit.version}</version>
        <scope>test</scope>
    </dependency>
</dependencies>

<repositories>
    <repository>
        <id>snapshots-repo</id>
        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        <releases>
            <enabled>false</enabled>
        </releases>
        <snapshots>
            <updatePolicy>always</updatePolicy>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>${java.version}</source>
                <target>${java.version}</target>
            </configuration>
        </plugin>
    </plugins>
</build>

任何想法如何使这项工作?


1
现在,您必须使用surefire插件的特殊实现。检查的junit队的例子在这里
扎哈

1
该问题基于过时的版本,但此答案基于当前版本(截至2016年12月)。
Nicolai

@Nicolai感谢您更新答案。无论如何,如果您有时间,我将不胜感激您对问题的编辑。
阿里·德加尼

1
不会再出现这种错误。这个问题涵盖了最缺乏测试执行的情况。
Nicolai

确保测试文件在正确的位置。默认情况下,test应该是src文件夹下main的同级对象。
Joe Bowbeer

Answers:


115

maven-surefire-plugin,从今天开始,并没有完全支持JUnit的5。在SUREFIRE-1206中添加此支持存在一个未解决的问题。

因此,您需要使用自定义提供程序。JUnit团队已经开发了一种。从用户指南中,您需要添加新API 的junit-platform-surefire-provider提供程序和TestEngine实现:

<build>
  <plugins>        
    <plugin>
      <artifactId>maven-surefire-plugin</artifactId>
      <!-- latest version (2.20.1) does not work well with JUnit5 -->
      <version>2.19.1</version>
      <dependencies>
        <dependency>
          <groupId>org.junit.platform</groupId>
          <artifactId>junit-platform-surefire-provider</artifactId>
          <version>1.0.3</version>
        </dependency>
        <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter-engine</artifactId>
          <version>5.0.3</version>
        </dependency>
      </dependencies>
    </plugin>
  </plugins>
</build>

另外,请确保声明junit-jupiter-api依赖项的范围为test

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

25
值得注意的是,目前,surefire 2.20.1不适用于junit 5提供程序,因此尽管使用了一年,但样本中使用的2.19.1仍然有效。
splatch

1
surefire 2.21.0也不起作用,必须回滚到
2.19.1

@valodzka对我来说,它确实适用于2.21.0和更高版本的插件和junit5。参见junit.org/junit5/docs/current/user-guide/…–
Thirler,

已验证:maven-surefire-plugin v2.21.0junit-jupiter-engine v5.2.0and junit-platform-surefire-provider v1.2.0
兼容-povis

2
在Surefire 2.22.0或更高版本中,此配置将失败。您需要从Surefire配置中排除Junit部门。我写了一个快速后约在这里- springframework.guru/...
约翰·汤普森

51

更新2

问题已在Maven Surefire插件v2.22.0中修复

Maven中央存储库中提供了新版本

马文

<dependency>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.22.0</version>
</dependency>

摇篮

compile group: 'org.apache.maven.plugins', name: 'maven-surefire-plugin', version: '2.22.0'

更新资料

正如Marian指出的那样,最新版本的JUnit 5 Platform Surefire Provider(1.2.0)支持最新版本的Maven Surefire插件(2.21.0)

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.21.0</version>
            <dependencies>
                <dependency>
                    <groupId>org.junit.platform</groupId>
                    <artifactId>junit-platform-surefire-provider</artifactId>
                    <version>1.2.0</version>
                </dependency>
            </dependencies>
        </plugin>



pom.xml

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

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.21.0</version>
            <dependencies>
                <dependency>
                    <groupId>org.junit.platform</groupId>
                    <artifactId>junit-platform-surefire-provider</artifactId>
                    <version>1.2.0</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

TestScenario.java

package test;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;

public class TestScenario {

    @Test
    @DisplayName("Test 2 + 2 = 4")
    public void test() {
        Assertions.assertEquals(4, 2 + 2);
    }
}

输出(MVN全新安装)

...
[INFO] --- maven-surefire-plugin:2.21.0:test(默认测试)@ test --- [INFO]
[INFO] -------------- -----------------------------------------
[INFO]测试
[INFO]- -------------------------------------------------- ---
[INFO]运行test.TestScenario
[INFO]测试运行:1,故障:0,错误:0,跳过:0,经过的时间:0.005 s-在test.TestScenario
[INFO]
[INFO]结果:
[INFO ]
[INFO] 测试运行:1,失败:0,错误:0,跳过:0
...


到目前为止最简单的方法:

    <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.19.1</version>
        <dependencies>
            <dependency>
                <groupId>org.junit.platform</groupId>
                <artifactId>junit-platform-surefire-provider</artifactId>
                <version>1.1.0</version>
            </dependency>
        </dependencies>
    </plugin>

1
这仅适用于类名称中的Test。将类重命名为ExampleScenario-将不会发现它。(Surefire 2.22.0)
阿列克谢·维诺格拉多夫

@AlexeiVinogradov是的。这是预期的行为。可在此处获取更多信息:stackoverflow.com/a/6178629/3523579
Mikhail Kholodkov '18年

bevare,junit引擎版本与spring boot父版本。仅指定依赖项junit-jupiter-engine:5.1在较新版本起作用的地方不起作用。Spring Boot仍然预先配置了JUnit4 <junit.version> 4.13。
Wooff

20

JUnit 5文档中

从版本开始2.22.0,Maven Surefire为在JUnit平台上执行测试提供了本机支持。

另外,您可以阅读maven-surefire-plugin文档

使用JUnit 5平台

要开始使用JUnit Platform,您需要至少TestEngine在项目中添加一个 实现。例如,如果要使用Jupiter编写测试,请将测试工件添加junit-jupiter-engine 到POM中的依赖项

这样就足以进行JUnit 5运行测试:

<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>davidxxx</groupId>
    <artifactId>minimal-pom-junit5</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <properties>
        <junit-jupiter.version>5.2.0</junit-jupiter.version> 
        <!--optional below but good practice to specify our java version-->
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>${junit-jupiter.version}</version>
            <scope>test</scope>
        </dependency>

        <!--optional below -->
        <!-- add any JUnit extension you need such as -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-params</artifactId>
            <version>${junit-jupiter.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.22.0</version>
            </plugin>
        </plugins>
    </build>

</project>

在我的GitHub空间上,我添加了一个可以浏览/克隆的示例maven项目。
网址:https//github.com/ebundy/junit5-minimal-maven-project


9

我在JUnit5和Maven中遇到了这个问题,但也注意到,即使仅将 junit-jupiter-engine添加为依赖项,测试仍将在某些项目上运行,而不是在其他项目上运行。我在这里的注释中看到了相同的模式:在上面的@Alex注释中,您可以看到他没有任何问题,即使使用早期版本的surefire / junit / platform。

经过一段时间的摸索,我意识到那些无法运行测试的项目就是那些测试方法名称包含“ test”一词的项目。尽管http://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html并未强制要求这样做

换句话说:与

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

这个

@Test
public void something() {
    assertTrue(true);
}

将不会运行,而

@Test
public void testSomething() {
    assertTrue(true);
}

将运行!

随着俄罗斯玩偶的发展,这一问题不断发展。

无论如何,@ Mikhail Kholodkov +1,其最新答案立即解决了所有问题!


我也遇到了mvn 3.5.0,jdk 1.8.0_101的问题,我的班级名称中没有'Test'并且未进行测试,这帮助我找到了!
dann.dev

是的,的确,您应该符合maven.apache.org/surefire/maven-surefire-plugin/examples/…,但是我在说的是不同的东西。
法比恩M '18

是的,事实证明我有两个问题,第一个是不记得基本的maven surefire测试规则。第二个原因是不进行Maven> update项目以获取Eclipse来拾取junit 5启动器。
dann.dev

我想补充一点,该类和方法必须是公共的。
–JónásBalázs

6

我在2019年8月遇到了同样的问题,在这里我曾问过这个问题:Maven默默地找不到要运行的JUnit测试。这些答案使我朝着正确的方向前进,但我发现您可以更加简洁地解决问题。我从JUnit5示例Maven项目复制了我的解决方案。

从JUnit 5.5.1和maven-surefire-plugin2.22.2开始,您不需要添加junit-platform-surefire-provider依赖项。在您的服务器中指定一个依赖项和一个插件就足够了pom.xml

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

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.22.2</version>
        </plugin>
    </plugins>
</build>

这是正确和简洁的方法。与OpenJDK 11和JUnit 5.6.2一起使用。

5

只是为了补充,surefire 2.22.0 + junit 5.2.0 +平台1.2.0也可以使用。随附的是供您参考的工作pom:

    <?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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.jjhome.junit5</groupId>
    <artifactId>junit5-hone</artifactId>
    <packaging>jar</packaging>
    <version>1.0.0-SNAPSHOT</version>
    <name>junit5-home</name>

    <properties>
        <maven.compiler.source>1.6</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <junit5.version>5.2.0</junit5.version>
        <platform.version>1.2.0</platform.version>
        <surefire.version>2.22.0</surefire.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>${junit5.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-params</artifactId>
            <version>${junit5.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>${junit5.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.vintage</groupId>
            <artifactId>junit-vintage-engine</artifactId>
            <version>${junit5.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-launcher</artifactId>
            <version>${platform.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-runner</artifactId>
            <version>${platform.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>${surefire.version}</version>
                <dependencies>
                    <dependency>
                        <groupId>org.junit.platform</groupId>
                        <artifactId>junit-platform-surefire-provider</artifactId>
                        <version>${platform.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.junit.jupiter</groupId>
                        <artifactId>junit-jupiter-engine</artifactId>
                        <version>${junit5.version}</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>
</project>

我的问题是,我没有junit-vintage-engine为某种依赖,而我所有的测试,书面的JUnit 4
马克

指定的junit,平台和surefire版本的组合对我有用。谢谢 !
CoderTR '19

4

在我的情况下,这是由于类路径中的TestNG(SUREFIRE-1527)。Groovy 2.5.5 POM随groovy-testng模块一起提供。

手动指定的测试框架提供程序(如https://maven.apache.org/surefire/maven-surefire-plugin/examples/providers.html中所述)解决了以下问题:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.22.1</version>

    <dependency>
        <groupId>org.apache.maven.surefire</groupId>
        <artifactId>surefire-junit-platform</artifactId>
        <version>2.22.1</version>
    </dependency>

您应该将<dependency>in 包装<dependencies>在代码示例中。
user1053510 19-10-10


1

我有一个类似的问题,也导致Surefire识别零测试。

我的问题原来与以下各项有关(来自JUnit 5.1.0 / maven文档):

由于Surefire 2.20中的内存泄漏以及Java 9上运行的问题,因此junit-platform-surefire-provider目前仅适用于Surefire 2.19.1。

我试图使用最新版本的Surefire(2.21.0)和junit-platform-surefire-provider(1.1.0),但它不起作用(在Java 8或9中都不起作用)

切换回Surefire 2.19.1解决了我的问题。

根据此问题,修复程序将包含在junit-platform-surefire-provider的1.2.0版本中(当前仅作为SNAPSHOT提供)。


1
我已经尝试了SNAPSHOT,并且一切正常(使用Surefire 2.21.0)。希望它在发布时仍能正常工作。
–'user7610

1

我注意到的一件事是我能够使它工作:

  • 命名测试类ClinicCalendarShould不会被Maven接受
  • 命名我的测试班ClinicCalendarTest确实会被Maven接受

因此,默认情况下,除非我缺少某种配置或参数或surefire插件中的任何内容,否则您需要将测试类命名为XXXTest。


0

更新为maven-surefire-plugin:2.20可以毫无问题地运行Junit5测试。

但是我M6在Junit5上使用该版本。


并不是那么简单(至少目前是这样)。请参阅JUnit 5用户指南
FrVaBe

@FrVaBe在m6版本上对我的作品感到很奇怪。
LazerBanana '17

2
我厌倦了surefire-2.20.1 + junit-5.0.2,它没有用。我还尝试了surefire-2.20.1 + junit-5.1.0-M6,但它不起作用
Eric

0

就我而言,surefire插件在jupiter-engine / api之后没有获得正确的版本。即使运行Maven 3.6.1和surefireplugin 2.22.2版也是如此!

现在,我的surefire-plugin配置如下所示:

<pluginManagement>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.22.2</version>
            <dependencies>
                <dependency>
                    <groupId>org.junit.jupiter</groupId>
                    <artifactId>junit-jupiter-engine</artifactId>
                    <version>5.5.2</version>
                </dependency>
            </dependencies>
        </plugin>

        ...
    </plugins>
</pluginManagement>

此外,我不得不强制使用以下版本:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>5.5.2</version>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>5.5.2</version>
        </dependency>
        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-engine</artifactId>
            <version>1.5.2</version>
        </dependency>
        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-commons</artifactId>
            <version>1.5.2</version>
        </dependency>
    </dependencies>
</dependencyManagement>

看起来5.5.2链接到错误的平台版本1.3.2,而不是我的案例中的1.5.2。

现在,所有JUnit5测试都可以使用。即使使用2.22.0的surefire插件,对我来说也并非如此!

希望有帮助...


0

我都面临着相同的问题junit5maven-surefire测试都失败了。但是junit4运行良好。下面的组合对我有用,我不添加版本控制。使用junit-bom依赖管理。使用spring-boot 2.1.4

   <dependencyManagement>
    <dependencies>
            <dependency>
                <groupId>org.junit</groupId>
                <artifactId>junit-bom</artifactId>
                <version>5.6.1</version>
                <scope>import</scope>
                <type>pom</type>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <scope>test</scope>
        </dependency>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
        </plugin>
    </plugins>
</build>

确保升级到最新版本的eclipse

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.