Skip restarter for JUnit5

See gh-14915
This commit is contained in:
michal
2018-10-21 01:11:11 +02:00
committed by Madhura Bhave
parent 80bb7ea9d6
commit 7181e76135

View File

@@ -37,6 +37,7 @@ public class DefaultRestartInitializer implements RestartInitializer {
static {
Set<String> skipped = new LinkedHashSet<>();
skipped.add("org.junit.runners.");
skipped.add("org.junit.platform.");
skipped.add("org.springframework.boot.test.");
skipped.add("cucumber.runtime.");
SKIPPED_STACK_ELEMENTS = Collections.unmodifiableSet(skipped);