我在两个测试文件夹中都需要JUnit。所以我添加了
androidTestCompile 'junit:junit:4.12'
testCompile 'junit:junit:4.12'
但是一旦我将JUnit添加到androidTest,我就无法运行测试,因为抛出了错误in this log.
有关如何解决此问题的任何想法?
编辑:我从运行配置中删除了gradle-aware构建。现在它说我的TestSuite
为空,但是有@Test
注释的测试
答案 0 :(得分:1)
在build.gradle文件中尝试使用Hava
dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'
}