【发布时间】:2014-08-18 16:49:11
【问题描述】:
我希望能够在 Android Studio 中进行单元测试和仪器测试,并在其中使用 Mockito。
我在 Android Studio 0.8 中使用新方法进行测试。这是:
- 使用 gradle 构建
- 使用官方 Android API 进行测试(ActivityInstrumentationTestCase2 等)
- 将测试放在应用的目录中,而不是作为单独的模块
- 在 Android Studio 中启动测试作为“Android 测试”运行配置
如何在我的测试中编写依赖于仅用于测试的库(例如 mockito 或 hamcrest)的代码?
我想在编译和运行测试时包含这些库,但要避免将它们导出到已发布的 .apk。
在https://code.google.com/p/mockito/wiki/DeclaringMockitoDependency 我读到我应该将依赖添加为:
dependencies {
....
testCompile "org.mockito:mockito-core:1.9.5"
}
但是在运行时我得到:
构建脚本错误,发现不支持的 Gradle DSL 方法: 'testCompile()'!
虽然我不确定它是否相关,但我使用的 gradle 构建文件是:
apply plugin: 'android'
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile project(':android-sdk')
testCompile "org.mockito:mockito-core:1.9.5"
}
android {
compileSdkVersion 19
buildToolsVersion "20.0.0"
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
// Move the tests to tests/java, tests/res, etc...
androidTest.setRoot('tests')
// Note - to run the tests from command line:
// $ gradle clean connectedCheck build
// (requires gradle 1.10)
// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}
}
【问题讨论】:
标签: android android-studio automated-tests mockito hamcrest