为插桩测试配置 testLogging

Configure testLogging for instrumented tests

我想为我的插桩测试配置 testLogging。然而,Gradle似乎忽略了我在android.testOptions.unitTests.all.testLogging中的配置。在那里,我配置了应该记录所有通过和失败的测试,但不应记录跳过的测试。但是,Gradle 不会记录我通过的测试,但会记录我跳过的测试。

build.gradle:

plugins {
    id 'com.android.application'
}

android {
    compileSdk 31

    defaultConfig {
        applicationId 'com.example.myapplication'
        minSdk 26
        targetSdk 31
        versionCode 1
        versionName '1.0'

        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    testOptions {
        unitTests {
            all {
                testLogging {
                    events = ["passed", "failed"]
                }
            }
        }
    }
}

dependencies {
    implementation 'androidx.appcompat:appcompat:1.4.1'
    implementation 'com.google.android.material:material:1.5.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
    androidTestImplementation 'androidx.test:runner:1.4.0'
}

ExampleInstrumentedTest.java:

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;

import org.junit.Ignore;
import org.junit.Test;

public class ExampleInstrumentedTest {
    @Test
    public void passedTest() {
        assertEquals(2, 1 + 1);
    }

    @Test
    public void failedTest() {
        assertEquals(3, 1 + 1);
    }

    @Test
    @Ignore
    public void skippedTest() {
        fail("Should be skipped");
    }
}

不幸的是,Gradle 没有考虑我的测试日志记录配置。除了我的Gradle配置,还输出跳过的测试,不输出通过的测试。

Output:

> Task :app:connectedDebugAndroidTest
Starting 3 tests on test(AVD) - 12

com.example.myapplication.ExampleInstrumentedTest > skippedTest[test(AVD) - 12] SKIPPED 

com.example.myapplication.ExampleInstrumentedTest > failedTest[test(AVD) - 12] FAILED 
    java.lang.AssertionError: expected:<3> but was:<2>
    at org.junit.Assert.fail(Assert.java:88)
Tests on test(AVD) - 12 failed: There was 1 failure(s).

我在 GitHub 上托管了我完整的最小示例项目:pmwmedia/android-test-example

不幸的是,这是不可能的,因为connected${Variant}AndroidTest任务没有继承自Gradle的AbstractTestTask,因此testOptions.unitTests对[=21=没有影响] 仪器化测试。

在这一点上你运气不好,除非你以某种方式扩展 Android 的连接测试任务并实现你的自定义任务来补充 Gradle 的 testLogging 扩展.

可以查看任务来源here and this is where the actual logging happens here