android - 基于 gradle 的项目缺少 RobolectricContext

标签 android unit-testing testing robolectric

使用 robolectric v2.0 和基于 gradle 的项目,我面临着运行者缺少 RobolectricContext 的问题。它适用于 testCompile 组:'org.robolectric',名称:'robolectric',版本:'2.0-alpha-2'

失败了 testCompile 组:'org.robolectric',名称:'robolectric',版本:'2.0'

我觉得我的问题出在我的 gradle 构建文件中,但我还没有找到解决它的方法:

apply plugin : 'java-robolectric'
apply plugin : 'idea'

// get 'java-robolectric' from Maven Central
buildscript {
  repositories {
    mavenCentral()
  }
  dependencies {
    // use version 2.0 for Robolectric 2.0
    classpath group: 'com.stanfy.android', name: 'gradle-plugin-java-robolectric', version: '2.0'
  }
}
sourceSets {
    main {
        java {
            srcDir 'src/java'
        }
    }
}

version = '0.9'

javarob {
    packageName = 'org.ligi.androidhelper'
}

test {
    scanForTestClasses = false
    include "**/*Test.class"
}

repositories {
    mavenCentral()
}

test {
    afterTest { desc, result ->
        println "Executing test ${desc.name} [${desc.className}] with result: ${result.resultType}"
    }
}

dependencies {
    compile fileTree(dir : 'libs', include : '*.jar')

    testCompile group: 'junit', name: 'junit', version: '4.10'
    testCompile group: 'org.mockito', name: 'mockito-core', version: '1.8.0'

    compile group: 'com.google.android', name: 'android', version: '4.1.1.4'
    testCompile group: 'org.robolectric', name: 'robolectric', version: '2.0'
}

这是我得到的错误:

ligi@ligi-tp:~/git/AndroidHelper$ gradle test
:compileJava UP-TO-DATE
:processResources UP-TO-DATE
:classes UP-TO-DATE
:compileTestJava UP-TO-DATE
:processTestResources UP-TO-DATE
:testClasses UP-TO-DATE
:test
Executing test classMethod [org.ligi.androidhelper.test.CheckBoxHelperTest] with result: FAILURE

org.ligi.androidhelper.test.CheckBoxHelperTest > classMethod FAILED
    java.lang.RuntimeException
        Caused by: java.lang.RuntimeException
Executing test classMethod [org.ligi.androidhelper.test.BitmapHelperTest] with result: FAILURE

org.ligi.androidhelper.test.BitmapHelperTest > classMethod FAILED
    java.lang.RuntimeException
        Caused by: java.lang.RuntimeException

2 tests completed, 2 failed
:test FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':test'.
> There were failing tests. See the report at: file:///home/ligi/git/AndroidHelper/build/reports/tests/index.html

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 11.723 secs

完整的源代码在这里: https://github.com/ligi/AndroidHelper

最佳答案

不再需要 RobolectricContext 类。此外,它在 Robolectric 2.0 中不存在。您可以简单地覆盖 RobolectricTestRunner 中的方法。

例如,可以通过以下方式找到AndroidManifest.xml:

@Override
protected AndroidManifest createAppManifest(FsFile manifestFile) {
  if (!manifestFile.exists()) {
    manifestFile = Fs.fileFromPath("pathToMy/AndroidManifest.xml");
  }
  return super.createAppManifest(manifestFile);
}

关于android - 基于 gradle 的项目缺少 RobolectricContext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16623233/

相关文章:

android - 使用哪个 gradle 文件将应用程序设置为可调试?

python - 使用 Django/Python 获得最大测试覆盖率的最佳实践?

firefox - 自动化 Firefox 和 Chrome 浏览器

Android:如何区分清除通知栏中的所有事件和用户操作

java - 对于 DocumentSnapshot 类型,错误 foreach 不适用于类型意味着什么?

javascript - 使用 Apache Cordova 编程时如何使用 ADB 显示 javascript 错误?

android - 如何更好地在 Android 上对 Looper 和 Handler 代码进行单元测试?

java - 使用私有(private)字段和@PostConstruct对Spring boot服务进行单元测试

python + Nose : make assertions about logged text?

windows - 如何在云中测试 Windows 程序?