我开始为我的应用程序编写单元测试。我正在使用Mockito来模拟对象。
This是我在应用级gradle文件中包含mockito依赖项的链接。 问题是我无法将mockito导入我的测试类。
这是我的app build.gradle文件,供参考。
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
targetCompatibility JavaVersion.VERSION_1_6
}
lintOptions {
disable 'HardcodedText','TextFields','OnClick'
}
}
repositories {
jcenter()
mavenCentral()
maven() {
name 'SonaType snapshot repository'
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}
ext {
robobindingVersion = 'latest.integration'
//robobindingVersion = '0.8.6-SNAPSHOT'
}
dependencies {
testCompile "org.mockito:mockito-core:1.+"
compile("org.robobinding:robobinding:$robobindingVersion:with-dependencies") {
exclude group: 'com.google.guava', module: 'guava'
}
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
testCompile('org.robolectric:robolectric:3.0-rc2') {
exclude group: 'commons-logging', module: 'commons-logging'
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
}
apt "org.robobinding:codegen:$robobindingVersion"
compile 'junit:junit:4.12'
}
答案 0 :(得分:1)
我有同样的问题,只需使用以下方法解决:
compile "org.mockito:mockito-core:1.+"
希望有帮助=]
答案 1 :(得分:1)
尝试更改
compile "org.mockito:mockito-core:1.+"
或implementation "org.mockito:mockito-core:1.+"
到
androidTestImplementation "org.mockito:mockito-core:1.+"
答案 2 :(得分:0)
手动导入mockito jar文件为我做了一件事。 要做到这一点,首先要创建一个名为" libs"的目录。在您的app目录中。请注意,此目录应与src / main和build目录的级别相同。 接下来,下载mockito jar文件并将其粘贴到libs目录中。
将其包含在应用程序级build.gradle文件的依赖项中:
dependencies {
compile files('libs/add-your-jar-file-name-here')
}
同步gradle,那应该可以完成这项工作。
有关快照的更详细答案,请参阅this答案。
答案 3 :(得分:0)
检查此链接....这可能有用 https://stackoverflow.com/a/34148132/5185201
//添加dexOptions
dexOptions {
incremental true
javaMaxHeapSize "4g"
}
//启用multidex支持。
multiDexEnabled true