Android studio无法解析org.junit导入

时间:2015-09-21 13:02:59

标签: android-studio junit gradle

我变得非常绝望。 我按照JetBrain指南在我的Android应用程序中安装和使用Junit。

因此,在gradle app文件中导入依赖项:

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.google.android.gms:play-services:7+'
compile 'com.android.support:support-v4:22.+'
testCompile 'org.robolectric:robolectric:2.4'
testCompile 'org.mockito:mockito-core:1.+'
testCompile 'junit:junit:4.12'}

我已经在单元测试中切换了构建变体。

但android studio无法解析Junit的典型注释符号,也无法从“org.junit”导入任何包。 我试图在这里和谷歌上找到一些东西,尝试使缓存无效并重新启动。我尝试使用junitgenerator插件,并在src / test / java / my self中编写测试...

对我来说,似乎gradle根本不会导入junit jar。任何想法如何解决这个问题?可能是AS问题?

感谢。

0 个答案:

没有答案