如何在Android Studio 2.1.3中运行简单的junit测试

时间:2016-08-17 17:49:17

标签: android unit-testing

最近有一个短暂的时刻,Android Studio中的Build Variants视图包含一个选项,用于单元测试'如果选中此选项,您只需选择测试类并点击“运行”即可轻松在Android Studio中运行基本单元测试。然后我想当Android Studio 2.0发布时,他们从构建变体菜单中删除了该选项。所有文档都说您应该能够右键单击测试类并说“运行”,但每当我这样做时,系统会提示我选择一个用于仪器测试的部署目标,我不感兴趣在那些。我在这里错过了什么吗?如何在Android Studio 2.1.3中运行基本单元测试?

这是我当前build.gradle的摘录,其中包含我之前运行单元测试所需的代码:

android {
compileSdkVersion project.COMPILE_SDK_VERSION.toInteger()
buildToolsVersion project.BUILD_TOOLS_VERSION

defaultConfig {
    minSdkVersion    project.SDK_MIN_VERSION_LIBRARY
    targetSdkVersion project.COMPILE_SDK_VERSION.toInteger()
    versionName project.VERSION_NAME
    versionCode project.VERSION_CODE.toInteger()


}
lintOptions {
    abortOnError false
}
buildTypes {
    debug{
        versionNameSuffix = "DEBUG"
    }
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
sourceSets {
    androidTest {
        setRoot('src/test')
        java.srcDir file('src/test/java')
        resources.srcDir file('src/test/resources')
    }

}
testOptions {
    unitTests.returnDefaultValues = true
}
android.testOptions.unitTests.all {
    // Configure includes / excludes
    include '**/*Test.class'
    exclude '**/espresso/**/*.class'

    // Configure max heap size of the test JVM
    maxHeapSize = '2048m'

    // Configure the test JVM arguments - Does not apply to Java 8
    jvmArgs '-XX:MaxPermSize=4096m', '-XX:-UseSplitVerifier'

    // Specify max number of processes (default is 1)
    maxParallelForks = 4

    // Specify max number of test classes to execute in a test process
    // before restarting the process (default is unlimited)
    forkEvery = 250

    // configure whether failing tests should fail the build
    ignoreFailures false

    // use afterTest to listen to the test execution results
    afterTest { descriptor, result ->
        println "Executing test for ${descriptor.parent}: ${descriptor.name} with result: ${result.resultType}"
    }
}

}

1 个答案:

答案 0 :(得分:2)

您已覆盖androidTest源集,以查看src/test/。因此,Gradle认为您的test/代码代表了仪器测试。

  

我应该删除整个sourceSets块吗?

理想情况下,您遵循库存配置:androidTest/包含检测测试,test/包含单元测试。

如果你想要别的东西,那很好。但是,当您右键单击检测测试类并选择“运行”时,它将运行检测测试。因此,如果您希望androidTest/进行单元测试,并instrumentationTestBecauseLongDirectoryNamesAreFun/进行测试测试,那很好,但您需要跟踪哪些内容在哪里自己。

因此,无论你是摆脱sourceSets关闭,还是更新它以反映你希望你的仪器测试和单元测试去哪里,都取决于你。