java.lang.VerifyError:类com.intellij.junit4.JUnit4TestRunnerUtil $ 5覆盖最终方法getRunner。()Lorg / junit / runner / Runner;

时间:2018-11-28 05:51:27

标签: java intellij-idea junit intellij-plugin

从IntelliJ运行测试用例时-面对此问题。 mvn全新安装可以正常工作。

有人遇到过这个问题吗?

1 个答案:

答案 0 :(得分:2)

尝试在您的maven项目中使用JUnit 4依赖项。 https://mvnrepository.com/artifact/junit/junit/4.12

<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.12</version>
    <scope>test</scope>
</dependency>