我正在尝试在Android Studio上设置robolectric单元测试环境。我按照这里的步骤进行了操作:
http://www.peterfriese.de/android-testing-with-robolectric/
我修改了文档中描述的build.gradle文件并同步项目。它确实成功构建,junit和roboelctric jar出现在Android Studio IDE的外部库中。但是当我跑步时
./ robolectric test
我看到了错误:
package org.junit.runner does not exist
import org.junit.runner.RunWith;
...
但是包确实存在于外部库中,为什么还会出现这个错误?我检查了我的项目源代码树,但是我找不到项目中的jar。 gradle在哪里放下下载的罐子?