JUnit没有使用IntelliJ Android项目

时间:2016-06-06 17:09:31

标签: android intellij-idea junit

http://www.tutorialspoint.com/junit/junit_environment_setup.htm

我已经完成了一步一步的教程,当我尝试写行

import org.junit.*;

" junit"部分亮红色,错误信息为"无法解析符号" junit""。

2 个答案:

答案 0 :(得分:1)

您正在使用的教程似乎是为命令行使用而编写的。 (下载jar,设置classpath等)。所以在IntelliJ中同样不起作用。 IDE实际上使这些更容易。

要解决您目前的困境,请尝试此操作。将光标放在红色' junit' (这基本上是一个损坏的导入)并选择"将Junit4添加到类路径"。这将添加IDEA随附的必要junit jar到您的类路径。

enter image description here

答案 1 :(得分:1)

打开build.gradle并确保JUnit在那里

dependencies {
  testCompile 'junit:junit:4.12'
  // other dependencies...
}

要获得针对Android细节的更好链接,请阅读Android文档中的Getting Started with Testing