web-dev-qa-db-ja.com

Eclipse JUnit 5のサポート

現在、JUnit 5は「安定した」バージョンでリリースされています。 IntelliJはWebサイトによるとJUnit 5をサポートしています。私の質問は、EclipseがJUnit 5もサポートしているかどうか、そしていつサポートされるかについてです。サポートされているとは、@RunWith(PlatformRunner.class)アノテーションがなくてもJUnit 5テストを実行できるかどうかを意味します。

2017年10月編集:Eclipseが現在 JUnit 5を公式にサポート Eclipse Oxygen1.a(4.7.1a)以降

13
RoiEX

JUnit 5テストをEclipse 4.7 Oxygenで実行できますJUnit 5 Support(BETA)for Oxygen 4.7プラグインをインストールした後、 Eclipseマーケットプレイス。 Eclipseが完全に再起動したら、次の場所でプロジェクトのプロパティを開きます。

Javaビルドパス->ライブラリ->ライブラリの追加-> JUnit-> JUnit 5

8
Phoenix

_Eclipse Kepler Service Release 2_を使用すると、次のように@RunWith(JUnitPlatform.class)でクラスに注釈を付けた後、_JUnit 5_テストを実行できます。

_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);
    }
}
_

enter image description here

プロジェクトの_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>
_
7
Arpit Aggarwal

クイックノート:古いjunit.test(junit4)ではなく、jupiter Testアノテーション(org.junit.jupiter.api.Test)を使用していることを確認してください。このため、junit 5でテストを実行しようとして数時間を無駄にしました!

0
Aaron Waddell