Spring Boot项目在Idea上 用 Junit5 单元测试报错

问题描述

用spring boot 2.2.X 版本进行项目搭建,pom文件配置如下:


    1.8



    org.springframework.boot
    spring-boot-starter-parent
    2.2.1.RELEASE



    
        org.springframework.boot
        spring-boot-starter-web
    
    
        org.springframework.boot
        spring-boot-starter-test
        test
    
    
        com.jayway.jsonpath
        json-path
        test
    



    
        
            org.springframework.boot
            spring-boot-maven-plugin
        
    
org.springframework.boot  
 spring-boot-maven-plugin  
  

单元测试类代码如下:

import com.example.test.AbstractTest;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

import javax.annotation.Resource;

@SpringBootTest(classes = {Application.class})
class ApplicationTests {

    @Resource(name = "test1")
    private AbstractTest test1;

    @Resource(name = "test2")
    private AbstractTest test2;

    @Test
    public void showTest() {

        test1.show();

        test2.show();
    }

}

在进行单元测试时,程序报错,错误提示如下:

Exception in thread "main" java.lang.NoSuchMethodError: org.junit.platform.commons.util.ReflectionUtils.getDefaultClassLoader()Ljava/lang/ClassLoader;
    at org.junit.platform.launcher.core.ServiceLoaderTestEngineRegistry.loadTestEngines(ServiceLoaderTestEngineRegistry.java:30)
    at org.junit.platform.launcher.core.LauncherFactory.create(LauncherFactory.java:53)
    at com.intellij.junit5.JUnit5IdeaTestRunner.createListeners(JUnit5IdeaTestRunner.java:39)
    at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:49)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)

排查过程

网上找了很多类似的错误,多是说Junit4 和Junit5 之间依赖冲突了,按照网友的一些解决思路进行修改,如删除Junit5 的相关依赖,发现并没有解决问题,后再Junit5 官网上发现,官网明确指出在IntelliJ IDEA 中使用Junit5 时,最好是2017.3版本之后,而我使用的正是2017.1的版本。
IntelliJ IDEA 跑Junit5 版本

解决问题

我在更换了新的IDEA 后,发现问题果然解决了。如果不想更新IDEA ,则可以按照官网所描述的步骤进行操作,一样可以解决问题。

总结

在遇到这些问题时,如果有官方文档,最好先去官网上看一看,也许官网已经提了这些问题,也给出了解决方案,避免无头苍蝇一般在网上乱找。

你可能感兴趣的:(springboot,intellij-idea)