Junit测试出现异常:Exception in thread "main" java.lang.NoSuchMethodError: org.junit.platform.com

Posted 盛夏光年2017

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Junit测试出现异常:Exception in thread "main" java.lang.NoSuchMethodError: org.junit.platform.com相关的知识,希望对你有一定的参考价值。

在进行单元测试时,测试出现异常

Exception in thread "main" java.lang.NoSuchMethodError: org.junit.platform.commons.util.ReflectionUtils.getDefaultClassLoader()Ljava/lang/ClassLoader;

错误就在pom.xml的依赖中,仔细查看控制台输出你会发现IntelliJ IDEA正在尝试使用JUnit5运行我的测试用例。

at com.intellij.junit5.JUnit5IdeaTestRunner.createListeners(JUnit5IdeaTestRunner.java:39)
  • 1

通过pom.xml发现,我希望使用JUnit4.12运行测试用例,我们查看pom.xml发现junit-jupiter-api这个依赖会导致这个错误。

<dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter-api</artifactId>
    <version>RELEASE</version>
</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5

因为此模块专为JUnit5而设计 -https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api

解决方案

1、删除pom.xmlorg.junit.jupiter依赖 
2、Reimport All Maven Project

原文(英文)地址:https://stackoverflow.com/questions/45004453/cannot-run-tests-intellij-spring-project-error-java-lang-nosuchmethoderror


以上是关于Junit测试出现异常:Exception in thread "main" java.lang.NoSuchMethodError: org.junit.platform.com的主要内容,如果未能解决你的问题,请参考以下文章

Junit 测试exception

为啥 JUnit 测试异常总是失败? [复制]

使用java.lang.Exception的错误:测试类应该只有一个公共构造函数

java小白训练营2109-day04-流程控制:分支判断+循环迭代+异常

已解决 java.lang.Exception: No runnable methods 异常

我想验证我的骆驼消费者应用程序是不是通过 junit 测试抛出特定异常