13

目前,JUnit 5 刚刚推出了“稳定”版本。根据网站,IntelliJ 支持 JUnit 5。我的问题是 eclipse 是否也支持 JUnit 5,如果不支持,何时支持。支持我的意思是如果我可以在不需要@RunWith(PlatformRunner.class)注释的情况下运行 JUnit 5 测试。

编辑 2017 年 10 月:Eclipse 现在从 Eclipse Oxygen1.a (4.7.1a)开始正式支持 JUnit 5

4

4 回答 4

10

在 Eclipse Marketplace 中安装适用于 Oxygen 4.7插件的JUnit 5 Support (BETA)后,您可以在Eclipse 4.7 Oxygen中运行JUnit 5测试。完全重启 Eclipse 后,在以下位置打开您的项目属性

Java 构建路径 -> 库 -> 添加库 -> JUnit -> JUnit 5

于 2017-08-28T15:01:46.873 回答
7

使用Eclipse Kepler Service Release 2,您可以JUnit 5在使用以下注释类后运行测试@RunWith(JUnitPlatform.class)

import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.junit.platform.runner.JUnitPlatform;
import org.junit.runner.RunWith;

@RunWith(JUnitPlatform.class)
public class Junit5Demo {

    @DisplayName("First Test")
    @Test
    void firstTest() {
        assertEquals(1, 1);
    }
}

在此处输入图像描述

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>arpit.aggarwal.junit5.demo</groupId>
    <artifactId>junit5-demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.8</java.version>
        <junit.jupiter.version>5.0.0-M2</junit.jupiter.version>
        <junit.vintage.version>4.12.0-M2</junit.vintage.version>
        <junit.platform.version>1.0.0-M2</junit.platform.version>
    </properties>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.19.1</version>
                <configuration>
                    <includes>
                        <include>**/Test*.java</include>
                        <include>**/*Test.java</include>
                        <include>**/*Tests.java</include>
                        <include>**/*TestCase.java</include>
                    </includes>
                </configuration>
                <dependencies>
                    <dependency>
                        <groupId>org.junit.platform</groupId>
                        <artifactId>junit-platform-surefire-provider</artifactId>
                        <version>${junit.platform.version}</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>${junit.jupiter.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.vintage</groupId>
            <artifactId>junit-vintage-engine</artifactId>
            <version>${junit.vintage.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-runner</artifactId>
            <version>${junit.platform.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
于 2016-08-22T17:31:00.973 回答
1

快速说明:确保您使用的是 jupiter Test 注释 (org.junit.jupiter.api.Test) 而不是旧的 junit.test (junit4)。因此,我浪费了几个小时试图让我的测试在 junit 5 上运行!

于 2019-03-27T14:09:41.090 回答
0

升级

我为此挣扎了一段时间。我想为使用 junit 5 测试的项目做出贡献,但我使用的是旧版本的 Eclipse Neon。

我可以访问另一台运行 junit 5 测试的机器。似乎更新版本的 Eclipse 带有 junit 5 功能。我去了: https ://www.eclipse.org/eclipseide/

安装较新的版本,然后从 github 加载项目解决了这个问题。我发现在另一台计算机上它的版本为 2021-06,但通过简单的升级(启用了主要升级)将其升级到 2021-12,这与撰写此答案时的最新版本相匹配。

我预计这将帮助我在未来管理更新和升级时不会遇到问题。

自 2021 年夏季以来,将 Eclipse 与 GitHub 集成的方法发生了变化。看到这个帖子。

如何 - 使用 Eclipse 进行 github 两因素身份验证

于 2021-12-13T01:00:06.127 回答