由于 NoClassDefFoundError: TestEngine,Junit 5 测试无法在 Eclipse 中启动

obe*_*ies 2 eclipse junit junit5 eclipse-2019-06

(这个问题在stackoverflow中没有问题,所以我决定在这里分享问题和解决方案。)

我想将我的 Spring Boot 项目从 JUnit 4 迁移到 JUnit 5,所以我添加了新的 API 作为依赖项并删除了旧的 API:

   <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
        <exclusions>
            <exclusion>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter-api</artifactId>
    </dependency>
Run Code Online (Sandbox Code Playgroud)

我想对我的项目进行完全迁移,因此我明确排除了 JUnit 4 中的所有内容,并且也不包含junit-vintage-engine(如官方迁移指南中所推荐的)。

于是,我做了各种变化,使测试编译,就像更换@Before@BeforeEach和组织进口。总而言之,这非常简单。

但是在 Eclipse 中运行测试引起了一些麻烦:

  • 首先,我收到消息“在项目构建路径上找不到 'junit.framework.TestCase'。只有在 JUnit 位于构建路径上时,才能运行 JUnit 3 测试。” 在自动弹出的启动配置对话框中,我能够发现我的错误:我需要选择 'Test runner' JUnit 5
  • 还是没有成功。现在我收到消息“未找到测试运行程序‘JUnit 5’的测试。这令人困惑,因为我在测试方法上使用了正确的 JUnit 5 注释。Eclipse 甚至确认了这一点,因为启动配置‘测试方法’搜索列出了测试方法就好了。

过了一会儿,我发现测试执行在控制台中打印了一个堆栈跟踪:

java.lang.NoClassDefFoundError: org/junit/platform/engine/TestEngine
    at org.junit.platform.launcher.core.ServiceLoaderTestEngineRegistry.loadTestEngines(ServiceLoaderTestEngineRegistry.java:35)
    at org.junit.platform.launcher.core.LauncherFactory.create(LauncherFactory.java:87)
    at org.junit.platform.launcher.core.LauncherFactory.create(LauncherFactory.java:67)
    at org.eclipse.jdt.internal.junit5.runner.JUnit5TestLoader.<init>(JUnit5TestLoader.java:34)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
    at java.lang.Class.newInstance(Class.java:456)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.createRawTestLoader(RemoteTestRunner.java:370)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.createLoader(RemoteTestRunner.java:365)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.defaultInit(RemoteTestRunner.java:309)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.init(RemoteTestRunner.java:224)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:208)
Caused by: java.lang.ClassNotFoundException: org.junit.platform.engine.TestEngine
    at java.net.URLClassLoader.findClass(URLClassLoader.java:444)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:486)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:378)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:419)
    ... 14 more
Run Code Online (Sandbox Code Playgroud)

这向我指出了问题的根本原因(请参阅下面的答案)...

obe*_*ies 14

问题是我缺少对引擎库的依赖:

    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter-engine</artifactId>
    </dependency>
Run Code Online (Sandbox Code Playgroud)

然后,测试在 Eclipse 中像魅力一样运行。

https://dev.to/martinbelev/how-to-enable-junit-5-in-new-spring-boot-project-29a8这样的迁移博客确实提到了这种依赖关系,但我主要使用JUnit 5 文档,并且不知怎的,我一定忽略了那里的这条重要信息......