繁体   English   中英

JUnit 5 导致 Travis CI 构建失败

[英]Travis CI build failing with JUnit 5

我目前正在使用 Maven、GitHub、CodeCov 和 Travis 进行 Java 项目,但我的测试有问题。 我使用 JUnit 5 进行测试,这里是依赖项的 pom.xml 片段:

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

我还没有创建任何测试,我只有一个空的测试类,它的方法除了有 @Test 标签之外什么都不做。 这是课程:

package test.java.test;

import org.junit.jupiter.api.Test;

public class MainTests {

    @Test
    public void sampleTest() {
        // TODO
    }
}

这是我项目中的 travis.yml 文件:

language: java
after_success:
  - bash <(curl -s https://codecov.io/bash)
script: 
  - "mvn test"

在我的本地机器上运行“mvn test”不会出现任何错误,但是我的 Travis 构建失败了:

[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] /home/travis/build/M1RZ4/TFG/src/test/java/test/MainTests.java:[3,29] package org.junit.jupiter.api does not exist
[ERROR] /home/travis/build/M1RZ4/TFG/src/test/java/test/MainTests.java:[7,10] cannot find symbol
  symbol:   class Test
  location: class test.java.test.MainTests

我不习惯和 Travis 一起工作,所以我不知道我做错了什么。

编辑:添加完整的 pom.xml 文件

<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>TFG</groupId>
    <artifactId>TFG</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <build>
        <sourceDirectory>src</sourceDirectory>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.0</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                    <artifactId>cobertura-maven-plugin</artifactId>
                    <version>2.7</version>
                    <configuration>
                    <formats>
                        <format>html</format>
                        <format>xml</format>
                    </formats>
                    <check />
                    </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
    <dependency>
        <groupId>org.jfree</groupId>
        <artifactId>jfreechart</artifactId>
        <version>1.0.19</version>
    </dependency>
    <dependency>
        <groupId>com.itextpdf</groupId>
        <artifactId>itextpdf</artifactId>
        <version>5.0.6</version>
    </dependency>
    <dependency>
        <groupId>com.gestor</groupId>
        <artifactId>GestorProblema1maquina</artifactId>
        <version>1.0</version>
        <scope>system</scope>
        <systemPath>${project.basedir}/lib/GestorProblema1maquina.jar</systemPath>
    </dependency>
    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter-api</artifactId>
        <version>5.4.2</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter-engine</artifactId>
        <version>5.4.2</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi</artifactId>
        <version>4.1.0</version>
    </dependency>
    </dependencies>
</project>

我认为罪魁祸首是包装混乱。 如在: http : testSourceDirectory指定的,pom.xml 的构建部分有一个sourceDirectory条目来指定源文件夹和testSourceDirectory指定测试源文件夹。

编译的输出显示您的测试放置在源文件夹中,因此它们是使用编译范围的依赖项编译的,而不是测试范围。

修理:

  • 源和测试源文件夹不得重叠。
  • 如果可能,使用传统的目录布局(很可能是可能的),并从 pom 中删除自定义

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM