IntelliJ IDEA with Junit 4.7 “!!!预期的 JUnit 版本 3.8 或更高版本:”

2022-08-31 06:00:15

当我尝试在IntelliJ IDEA中运行以下测试时,我收到消息:

"!!!预期的 JUnit 版本 3.8 或更高版本:”

应该注意的是,这是我在IntelliJ IDEA 9中开发的一个Android项目。

public class GameScoreUtilTest {
    @Test
    public void testCalculateResults() throws Exception {
        final Game game = new Game();

        final Player player1 = new Player();
        {
            final PlayedHole playedHole = new PlayedHole();
            playedHole.setScore(1);
            game.getHoleScoreMap().put(player1, playedHole);
        }
        {
            final PlayedHole playedHole = new PlayedHole();
            playedHole.setScore(3);
            game.getHoleScoreMap().put(player1, playedHole);
        }
        final GameResults gameResults = GameScoreUtil.calculateResults(game);

        assertEquals(4, gameResults.getScore());
    }
}

完整的堆栈跟踪如下所示...

!!! JUnit version 3.8 or later expected:

java.lang.RuntimeException: Stub!
    at junit.runner.BaseTestRunner.<init>(BaseTestRunner.java:5)
    at junit.textui.TestRunner.<init>(TestRunner.java:54)
    at junit.textui.TestRunner.<init>(TestRunner.java:48)
    at junit.textui.TestRunner.<init>(TestRunner.java:41)
    at com.intellij.rt.execution.junit.JUnitStarter.junitVersionChecks(JUnitStarter.java:152)
    at com.intellij.rt.execution.junit.JUnitStarter.canWorkWithJUnitVersion(JUnitStarter.java:136)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:49)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:110)

Process finished with exit code -3

答案 1

出现此问题的原因是 Android Platform () 已包含 JUnit 类。IDEA 测试运行程序加载这些类,并看到它们来自旧的 JUnit,而您尝试使用带注释的测试,这是新 JUnit 的一个功能,因此您从测试运行程序处获得错误。android.jar

解决方案很简单,打开| |,然后向上移动,使其在类路径中位于前面。现在,测试运行程序在加载新的 JUnit 版本时会很高兴。Project StructureModulesDependenciesjunit-4.7.jarAndroid 1.6 Platform


答案 2

enter image description here

我的模块是一个java库模块,所以将JRE更改为1.8 java解决了这个问题。

或者,您也可以通过模块设置> SDK Location > JDK 全局执行此操作,指定 Oracle 的 JDK 8 而不是 Android SDK 的副本。


推荐