Android构建工具1.1.0,单元测试文件夹?

时间:2015-02-22 18:31:49

标签: android android-gradle robolectric android-build build-tools

我最近安装了从google到我的android项目的最新工具:

buildscript {
      repositories {
         jcenter()
         mavenCentral()
      }
      dependencies {
         classpath 'com.android.tools.build:gradle:1.1.0'
      }
}

allprojects {
    repositories {
        jcenter()
    }
}

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    defaultConfig {
        applicationId "com.xxx"
        minSdkVersion 10
        targetSdkVersion 21
        versionCode 200
        versionName "2.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    signingConfigs {
        debug {
            ...
        }
        release {
            ...
        }
    }
    buildTypes {
        release {
            ...
        }
        debug {
            ...
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'

    // ---- Tests with robolectric
    testCompile 'com.google.guava:guava:14.0.1'
    testCompile 'junit:junit:4.+'
    testCompile 'org.robolectric:robolectric:2.4'
    testCompile 'org.mockito:mockito-all:2.0.2-beta'

    // ---- Tests with Espresso
    androidTestCompile ('com.android.support.test.espresso:espresso-core:2.0') {
        exclude module: 'hamcrest-core'
    }
    androidTestCompile 'org.hamcrest:hamcrest-core:1.1'
    androidTestCompile 'org.hamcrest:hamcrest-integration:1.1'
    androidTestCompile 'org.hamcrest:hamcrest-library:1.1'
    androidTestCompile ('com.android.support.test:testing-support-lib:0.1') {
        exclude module: 'hamcrest-core'
    }
    androidTestCompile 'com.android.support.test.espresso:espresso-contrib:2.0'
    androidTestCompile('junit:junit-dep:4.10') {
        exclude module: 'hamcrest-core'
    }
}

之前我曾经使用com.github.jcandksolutions.gradle:android-unit-test:2.1.1在jvm中运行我的robolectric测试。 谷歌为他们的新构建工具说:“新的源文件夹被识别为单元测试:src / test / java,src / testDebug / java,src / testMyFlavor / java等。” 但是如下所示,我的测试文件夹无法识别为源文件夹。它与com.github.jcandksolutions.gradle:android-unit-test:2.1.1一起使用,但不再使用新的构建工具:

enter image description here

我在这里缺少什么?谢谢

4 个答案:

答案 0 :(得分:6)

我找到了在IDE左下角的Test Artifacts之间切换的解决方案。在这个屏幕上只有“Android Instrumentation Tests”可用,因为我降级了我的android工具,但是使用1.1.0+工具,您应该看到不同类型的测试,以使IDE将它们识别为源文件夹。

enter image description here

答案 1 :(得分:4)

前几天我遇到了类似的问题,除了我能够在Android Studio中运行Robolectric测试,但是没有从命令行运行。对我有用的是以下内容。

1)运行./gradlew clean assembleDebug test(而不仅仅是clean test

(现在,它会从主程序包中找到来源,但我会得到this problem

2)将此添加到build.gradle文件中:android.sourceSets.test.java.srcDirs += "build/generated/source/r/debug"

答案 2 :(得分:3)

只需按照http://tools.android.com/tech-docs/unit-testing-support启用实验单元测试并将测试工件切换到单元测试。然后您的单元测试文件夹将被识别。

当您遇到更多问题时,这可能有助于http://nenick-android.blogspot.de/2015/02/android-studio-110-beta-4-and.html

答案 3 :(得分:0)

如果有任何用处,我设置了一个锅炉板项目,允许通过使用切换构建变体来使用单元测试和Espresso测试。您不需要使用任何第三方插件。

https://github.com/hitherejoe/Android-Boilerplate