junit 测试未通过Maven运行?

sqserrrh  于 2022-11-11  发布在  Maven
关注(0)|答案(6)|浏览(198)

当我在Maven中运行测试时,我得到了以下结果:

[INFO] -------------------------------------------------------    
[INFO]  T E S T S     
[INFO] -------------------------------------------------------   
[INFO]   
[INFO] Results:  
[INFO]   
[INFO] Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

我的测试类JsonReaderTest.class位于src/test/java中,并且遵循了我从maven-surefire-plugin中了解到的正确的命名约定。
在Maven之外运行时,测试运行良好。
我有这个插件包括在我的pom:

<!-- Executes tests -->
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.20.1</version>
</plugin>

在我的依赖项中:

<!-- Test -->
<dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter-api</artifactId>
    <version>5.0.0</version>
</dependency>

<dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter-engine</artifactId>
    <version>5.0.0</version>
</dependency>

和我的测试类:

package org.avalin.optaplanner.test.java;

import org.avalin.optaplanner.json.JsonReader;
import org.junit.jupiter.api.*;

import java.io.FileNotFoundException;
import java.nio.file.Paths;

import static org.junit.jupiter.api.Assertions.*;

public class JsonReaderTest
{
    @Test
    @DisplayName("Test: No such file at designated path")
    void testloadFromJsonTest() throws Exception
    {
        Throwable exception = assertThrows(FileNotFoundException.class, 
        ()-> JsonReader.loadFromJson(".json"));
        assertEquals(".json (No such file or directory)", 
        exception.getMessage());
    }

    @Test
    @DisplayName("Test: Load Shifts from JSON (String instead of number)")
    void testLoadShiftsFromJson3()
    {
        Throwable exception = assertThrows(NumberFormatException.class, ()-> JsonReader.loadFromJson(Paths.get("src/main/resources/org/avalin/optaplanner/json/faultyShift-2.json").toAbsolutePath().toString()));
        assertEquals("\nOne or more of your \"shift\" elements has a number format exception.\n" +
            "Check for errors in your JSON-properties.\n" +
            "(Did you insert a string instead of a number in id?)", 
        exception.getMessage());
    }

    @Test
    @DisplayName("Test: JSON is correctly loaded")
    void testJsonIsLoaded()
    {
        assertFalse(JsonReader.jsonIsLoaded());
    }

    @AfterEach
    void cleanJsonReader()
    {
        JsonReader.cleanJsonReader();
    }
}

当我试图在谷歌上搜索这个问题时,似乎唯一可能出错的是命名约定(class必须以test结尾或开头,我测试了两者,没有任何变化),并且测试类应该放在适当的文件夹中。
当我运行时:mvn -Dtest=JsonReaderTest测试
我得到以下:

Failed to execute goal org.apache.maven.plugins:maven-surefire-
plugin:2.20.1:test (default-test) on project optaplanner: No tests were 
executed!

JsonReaderTest.class也会在目标/测试类中正确生成
到底是什么原因?

mo49yndu

mo49yndu1#

同时使用Maven Surefire插件和JUnit 5需要进行一些调整...
从文档中:
JUnit团队已经为Maven Surefire开发了一个非常基本的提供程序,它允许您通过mvn测试运行JUnit 4和JUnit Jupiter测试。junit 5-maven-consumer项目中的pom.xml文件演示了如何使用它,可以作为一个起点。
由于Surefire 2.20中的内存泄漏,junit-platform-surefire-provider目前只能与Surefire 2.19.1一起使用。

...
<build>
    <plugins>
        ...
        <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.19</version>
            <dependencies>
                <dependency>
                    <groupId>org.junit.platform</groupId>
                    <artifactId>junit-platform-surefire-provider</artifactId>
                    <version>1.0.0</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>
...
bfrts1fy

bfrts1fy2#

这个插件为我工作:

<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>3.0.0-M3</version>
                <dependencies>
                    <dependency>
                        <groupId>org.apache.maven.surefire</groupId>
                        <artifactId>surefire-junit47</artifactId>
                        <version>3.0.0-M3</version>
                    </dependency>
                </dependencies>
            </plugin>

取自https://maven.apache.org/surefire/maven-surefire-plugin/examples/junit.html

iqjalb3h

iqjalb3h3#

下面的pom配置对我有效:

<dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-api</artifactId>
      <version>5.4.0</version>
      <scope>test</scope>
  </dependency>
  <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <version>5.4.0</version>
      <scope>test</scope>
  </dependency>
  <dependency>
      <groupId>org.junit.platform</groupId>
      <artifactId>junit-platform-launcher</artifactId>
      <version>1.4.0</version>
      <scope>test</scope>
  </dependency>
....
<plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.19</version>
        <dependencies>
            <dependency>
                <groupId>org.junit.platform</groupId>
                <artifactId>junit-platform-surefire-provider</artifactId>
                <version>1.0.0</version>
            </dependency>
        </dependencies>
    </plugin>
...

上述@glytching的插件部分

zkure5ic

zkure5ic4#

我也遇到了同样的问题。所有的测试类都是包私有的,JUnit 5看不到它们。解决方案是将这个依赖项添加到pom文件中:

<dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter-engine</artifactId>
    <version>5.3.2</version>
    <scope>test</scope>
</dependency>
6tqwzwtp

6tqwzwtp5#

我也遇到了同样的问题,我花了好几天才找到解决方案!首先,确保类名以***Test.java结尾,例如:MyGreatTest.java第二,让你的类和方法公开!这一点非常重要,否则mvn test将忽略你的测试类!第三,我在pom.xml中添加了以下代码:

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

8e2ybdfx6#

沿着所有的junit依赖,如引擎,api,启动器这一个集成了所有我猜

<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-runner</artifactId>
<version>1.9.0-M1</version>
<scope>test</scope>

最新版本的surefire插件
而且它只对我起作用,没有其他junite依赖项

相关问题