当我尝试在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.(BaseTestRunner.java:5) at junit.textui.TestRunner. (TestRunner.java:54) at junit.textui.TestRunner. (TestRunner.java:48) at junit.textui.TestRunner. (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
CrazyCoder.. 362
出现此问题是因为Android Platform(android.jar
)已包含JUnit类.IDEA测试运行器加载这些类并看到它们来自旧的JUnit,而您尝试使用带注释的测试,这是新JUnit的一个功能,因此您从测试运行器获得错误.
解决方案很简单,打开Project Structure
| Modules
| Dependencies
,并向上移动junit-4.7.jar
,以便它在classpath 之前 Android 1.6 Platform
.现在,测试运行器将在加载新的JUnit版本时感到高兴.
出现此问题是因为Android Platform(android.jar
)已包含JUnit类.IDEA测试运行器加载这些类并看到它们来自旧的JUnit,而您尝试使用带注释的测试,这是新JUnit的一个功能,因此您从测试运行器获得错误.
解决方案很简单,打开Project Structure
| Modules
| Dependencies
,并向上移动junit-4.7.jar
,以便它在classpath 之前 Android 1.6 Platform
.现在,测试运行器将在加载新的JUnit版本时感到高兴.
我的模块是一个java库模块,所以将JRE更改为1.8 java解决了这个问题.
或者,您也可以通过模块设置> SDK位置> JDK全局完成,指定Oracle的JDK 8而不是Android SDK的副本.
我有一个多模块项目(libgdx)的问题.一个模块是纯Java并且有测试.我的解决方案是在我的单元测试的运行配置中将"使用替代JRE"设置为"Java 1.8".这确保了类路径上没有android.jar,并且使用了junit 4.x runner.
既创造的时候,我得到了同样的错误Unit Test
,并Android Instrument Test
在Android Studio中1.4+,它开始变得混乱.要避免此错误,请确保您的测试类正在进行Android Tests
中Run/Debug Configurations
请确保您正确遵循说明https://developer.android.com/training/testing/unit-testing/instrumented-unit-tests.html
确保Test Artifact
在Build Variants
设置为Android Instrumentation Tests
单击菜单Run
>Edit Configuration
确保您的类/方法名称在内部Android Tests
而不是JUnit
如果JUnit
只是删除配置并右键单击要Run
再次测试的文件.然后它将在Android Tests
部分下创建配置,并在设备/模拟器上运行.
对于Android Studio - 从Android Studio 1.1 Beta 4开始,Google已添加对Android Gradle插件1.1.0-RC的支持.新插件使用junit 4+支持通过Android Studio进行单元测试.
这仍然是实验性的,并且有一些手动步骤来设置它.