Robolectric和Android Studio

时间:2014-10-21 10:54:42

标签: android gradle android-studio robolectric

我已经尝试了几天,没有结果。我需要在Android Studio(0.8.9,最新版本)中设置Robolectric。 我遵循了不同的教程Android Unit and Integration testingRoboelectric installation for Unit testingAndroid Gradle app with RoboelectricHow to run Roboelectric JUnit tests,但总是遇到某种错误。

所以我专门为测试创建了模块:

enter image description here

enter image description here

Kedzoh(项目)build.gradle

// Top-level build file where you can add configuration options common to all sub-    projects/modules.
buildscript {
repositories {
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:0.12.+'
    classpath 'org.robolectric:robolectric-gradle-plugin:0.12.+'
}
}

allprojects {
repositories {
    jcenter()
}
}

app build.gradle:

apply plugin: 'com.android.application'
apply plugin: 'android'

android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
defaultConfig {
    applicationId 'com.dev.kedzoh'
    minSdkVersion 9
    targetSdkVersion 19
    versionCode 14
    versionName '1.6.7'
}
buildTypes {
    release {
        runProguard false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
productFlavors {
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_7
    targetCompatibility JavaVersion.VERSION_1_7
}
}

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

compile 'com.android.support:appcompat-v7:19.+'
compile 'com.google.android.gms:play-services:4.2.42'
compile 'com.squareup.retrofit:retrofit:1.6.1'
compile 'com.squareup.okhttp:okhttp:2.0.0'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.0.0'
compile 'com.google.code.gson:gson:2.2.4'
compile 'com.squareup.picasso:picasso:2.3.3'
// You must install or update the Support Repository through the SDK manager to use this dependency.
compile 'com.android.support:support-v4:19.+'
compile 'com.google.guava:guava:18.0-rc1'
compile 'com.sothree.slidinguppanel:library:+'
compile 'com.larswerkman:HoloColorPicker:1.4'
}

kedzoh-tests build.gradle:

apply plugin: 'java'

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

compile 'com.squareup.retrofit:retrofit:1.6.1'
compile 'com.squareup.okhttp:okhttp:2.0.0'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.0.0'
compile 'com.google.code.gson:gson:2.2.4'
compile 'com.squareup.picasso:picasso:2.3.3'
// You must install or update the Support Repository through the SDK manager to use this dependency.
compile 'com.google.guava:guava:18.0-rc1'
compile 'com.sothree.slidinguppanel:library:+'
compile 'com.larswerkman:HoloColorPicker:1.4'

testCompile 'junit:junit:4.+'
testCompile 'org.robolectric:robolectric:2.2'
}

此时我无法导入Robolectric类,它给了我错误。当我将 apply plugin:' robolectric' 添加到 kedzoh-tests build.gradle 时,它会要求' android'插件。在我添加之后,它抱怨没有Manifest并且无法构建。 我不确定这是正确的配置,因为它从未真正起作用。有人可以提供一些如何在Android Studio中设置Robolectric的建议吗?

修改

我尝试了下面的答案,但仍然坚持"未找到课程"错误:

enter image description here

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:2)

已经有不同的robolectric项目模板。你试过https://github.com/nenick/android-gradle-template吗?

答案 1 :(得分:0)

我认为通过在主“app”模块之外创建测试模块,您可能会让您的生活变得更加困难和复杂。我见过的大多数教程在app模块中都有一个androidTest文件夹,可以包含你的Robolectric测试。我所看到的所有基于Eclipse的旧教程似乎都指示我们创建与主项目分开的测试模块。

如果我使用的是Robolectric,我会设置像我为你创建的项目https://github.com/marcthomas2013/Kedzoh。我会使用androidTest文件夹来放置我的测试并配置gradle文件,如下所示。

请注意,使用androidTestCompile声明包含测试的依赖项,并且仅使用compile声明应用程序依赖项。

这个gradle文件中的另一个项目是robolectric部分,它包含并排除androidTest文件夹中的类。任何不在espresso文件夹中的内容都将使用gradlew测试目标运行,并且在调用gradlew connectedAndroidTest目标时将运行包括espresso文件夹在内的所有内容。

app gradle file
apply plugin: 'com.android.application'
apply plugin: 'robolectric'

android {
    packagingOptions {
        exclude 'LICENSE.txt'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE'
    }
    compileSdkVersion 19
    buildToolsVersion "19.1.0"

    defaultConfig {
        minSdkVersion 18
        targetSdkVersion 18
        versionCode 2
        versionName "1.0.0-SNAPSHOT"
        testInstrumentationRunner "com.google.android.apps.common.testing.testrunner.GoogleInstrumentationTestRunner"
    }

    buildTypes {
        release {
            runProguard false
        }
    }

    sourceSets {
        androidTest {
            setRoot('src/androidTest')
        }
    }
}

robolectric {
    include '**/*Test.class'
    exclude '**/espresso/**/*.class'
}

dependencies {
    repositories {
        mavenCentral()
    }
    compile 'com.sothree.slidinguppanel:library:2.0.1'

    androidTestCompile('junit:junit:4.11') {
        exclude module: 'hamcrest-core'
    }
    // Espresso
    androidTestCompile files('libs/espresso-1.1.jar')
    androidTestCompile files('libs/testrunner-1.1.jar')
    androidTestCompile files('libs/testrunner-runtime-1.1.jar')
    androidTestCompile 'com.google.guava:guava:14.0.1'
    androidTestCompile 'com.squareup.dagger:dagger:1.1.0'
    androidTestCompile 'org.hamcrest:hamcrest-integration:1.1'
    androidTestCompile 'org.hamcrest:hamcrest-core:1.1'
    androidTestCompile 'org.hamcrest:hamcrest-library:1.1'
    androidTestCompile('org.robolectric:robolectric:2.3') {
        exclude module: 'classworlds'
        exclude module: 'commons-logging'
        exclude module: 'httpclient'
        exclude module: 'maven-artifact'
        exclude module: 'maven-artifact-manager'
        exclude module: 'maven-error-diagnostics'
        exclude module: 'maven-model'
        exclude module: 'maven-project'
        exclude module: 'maven-settings'
        exclude module: 'plexus-container-default'
        exclude module: 'plexus-interpolation'
        exclude module: 'plexus-utils'
        exclude module: 'wagon-file'
        exclude module: 'wagon-http-lightweight'
        exclude module: 'wagon-provider-api'
    }
    androidTestCompile 'com.squareup:fest-android:1.0.+'
}

项目构建文件 这里我们包含了robolectric类路径,以便我们可以在上面的配置文件中使用robolectric gradle命令。

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.12.2'
        classpath 'org.robolectric:robolectric-gradle-plugin:0.11.+'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        mavenCentral()
    }
}

您能否解释一下您遇到的错误,因为根据您的工作方式可能会出现许多错误,创建单独的测试模块也有特殊原因。

我提供的项目基于套牌平台设置(https://github.com/robolectric/deckard-gradle)这里有一些关于JUnit冲突等的提示,你可能遇到了麻烦。

为了能够在应用程序中调试单元测试,你必须在启动测试时手动调整类路径(完全不漂亮!),基于本文中的信息{ {3}}

您将需要运行单元测试,等待它失败,复制-classpath参数及其值(它将很长并以“”开始并完成“)并将其复制到运行配置中的VM选项中,然后在该类路径的末尾添加一个;或者a:取决于你的操作系统路径分隔符,并添加你的测试类的路径,类似于<ABSOLUTE_PATH_TO_PROJECT>/build/test-classes这将把你的测试类添加到类路径然后Android Studio应该可以运行它们。

这也假设运行gradle testClasses的步骤已经完成了文章https://github.com/codepath/android_guides/wiki/Robolectric-Installation-for-Unit-Testing