私のbuild.gradleは次のように構成されています:
apply plugin: 'java'
compileTestJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
repositories {
mavenCentral()
}
dependencies {
testCompile("org.junit.jupiter:junit-jupiter-api:5.0.0-M1")
testRuntime("org.junit.vintage:junit-vintage-engine:5.0.0-M1")
}
そして、このような簡単なテスト:
public class JUnit5Test {
@Test
void test() {
}
}
テストを実行すると、コンソールに次のように表示されます。
Test run finished after 76 ms
[ 1 tests found ]
[ 0 tests skipped ]
[ 1 tests started ]
[ 0 tests aborted ]
[ 1 tests successful]
[ 0 tests failed ]
BUILD SUCCESSFUL
しかし、テストレポートには何もありません:
私は何を間違っていますか?JUnit 5 の結果をテスト レポート ウィンドウに統合するにはどうすればよいですか?
Intellij 2016.2 を使用しています