Integre os resultados dos testes JUnit 5 ao relatório de teste Intellij

Meu build.gradle é configurado assim:

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")
}

e um teste simples como este:

public class JUnit5Test {
    @Test
    void test() {

    }
}

Quando executo meu teste, vejo isso no console:

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

Mas não há nada no relatório de teste:

O que eu faço de errado? Como posso integrar os resultados do JUnit 5 nas janelas do relatório de teste?

Estou usando o Intellij 2016.2

questionAnswers(3)

yourAnswerToTheQuestion