- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我有一个包装 API 的库模块,我想编写一些测试。我想导入 JUnit 和 MockWebServer 之类的东西,但只针对测试 sourceSet,而不是 androidTest,因为我想使用前者,因为后者会导致测试在 android 设备或 AVD 中运行,我不要。因此,我的 gradle 文件中有这个:
sourceSets {
main {
test {
setRoot('src/test')
}
}
}
...
dependencies {
...
testCompile 'junit:junit:4.12'
testCompile 'com.squareup.okhttp:mockwebserver:2.4.0'
}
但是,这不会起作用,相反,我必须将依赖项导入为 androidTestCompile
依赖项。这是为什么?
最佳答案
你应该有这样的结构:
root
module
src
main
test
build.gradle
中您需要的是(无需设置源集):
dependencies {
// Unit testing dependencies.
testCompile 'junit:junit:4.12'
testCompile 'com.squareup.okhttp:mockwebserver:2.4.0'
}
您可以查看 Google 的官方仓库:
如果您想使用单元测试和 Instrumentation 测试,您应该:
root
module
src
main
test
androidTest
在这种情况下,您的 build.gradle 应该是:
dependencies {
// Dependencies for local unit tests
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-all:1.10.19'
testCompile 'org.hamcrest:hamcrest-all:1.3'
// Android Testing Support Library's runner and rules
androidTestCompile 'com.android.support.test:runner:0.3'
androidTestCompile 'com.android.support.test:rules:0.3'
}
关于android - 在 Android 中,为什么我需要为 "test"sourceSet 使用 androidTestCompile?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32199094/
我正在尝试使用 firebase 控制台向我的应用程序添加一个 google 登录选项。所以我已经下载了应用程序示例并厌倦了运行,然后在遇到各种错误并纠正它们之后我被困在这一点上请帮忙 Error:(
当我添加时,我正在尝试使用 Mockito 进行仪器测试 androidTestCompile 'org.mockito:mockito-core:2.7.22' 我收到以下错误: Error:Con
实际上,我的项目有单元测试。都配置在/src/test/java/ 最近需要在/src/androidTest/java添加插桩测试。为此,我在 build.gradle 中添加了 espresso
继another question之后,已解决。 我正在关注Start Developing for Android Pluralsight 类(class)。我们即将添加测试。说明中表示将 andr
当我尝试导入从 Eclipse 导出的 build.gradle 文件时出现这样的错误 build.gradle代码: // Top-level build file where you can ad
这太奇怪了。我有一个 Activity 和一个 ViewPager,它承载几个 Fragment,第一个有一个 RadioButton使用 ID android:id="@+id/backjudgeR
我遵循了说明 here添加仪器测试,但不幸的是,Android Studio 提示来自测试运行程序包 (com.android.support.test:runner:0.5) 或测试规则或 espr
所以我有一个包装 API 的库模块,我想编写一些测试。我想导入 JUnit 和 MockWebServer 之类的东西,但只针对测试 sourceSet,而不是 androidTest,因为我想使用前
我是测试世界的新手,甚至是 Android 测试世界的新手。在对有助于在 android 上进行测试的 Robolectric 进行研究时,最让我感到困惑的是一件事。有时在网络上,我看到人们在引用 R
今天我安装了 Android Studio,打开程序后,我在 Gradle sync 部分的消息中看到了这个错误 -> Error:(31, 0) Could not find method andr
我正在尝试在 IntelliJ IDEA 中使用 AndroidAnnotations 和 Gradle 创建一个Hello World。(我只有一些 IntelliJ 的经验,所有其他的东西对我来说
我是一名优秀的程序员,十分优秀!