运行Junit 5 Android测试时无法解析的参考Jupiter和assertTrue

问题描述

我正在尝试在Kotlin中创建一个处理Bitmap的Android测试类,但是由于这些错误,我无法运行测试。它们仅在 androidTest 中的任何测试类中发生,但 test 中的简单JVM测试运行没有问题。

首先,这就是我的测试类的样子

import android.graphics.Bitmap
import androidx.test.core.app.ApplicationProvider
import org.junit.jupiter.api.Assertions.assertTrue

class RoundImageTest {

    @org.junit.jupiter.api.Test
    fun imagesRatio() {
        // test with square images
        val squareBitmap: Bitmap = Bitmap.createBitmap(
             164,164,Bitmap.Config.ARGB_8888
        )
        assertTrue(squareBitmap.height == squareBitmap.width)
    }
}

按照指定的说明here,我将其保存在项目的 build.gradle

dependencies {
    classpath 'com.android.tools.build:gradle:4.0.1'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    classpath 'eu.appcom.gradle:android-versioning:1.0.2'
    classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
    classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.10.0"
    classpath "org.jlleitschuh.gradle:@R_159_5027@-gradle:9.2.1"
    classpath("de.mannodermaus.gradle.plugins:android-junit5:1.6.2.0")
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

,这在我的应用程序的 build.gradle

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

apply plugin: 'eu.appcom.gradle.android-versioning'

apply plugin: 'maven'

apply plugin: 'kotlin-kapt'

def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))

android {
    compileSdkVersion 29
    defaultConfig {
        applicationId "com.example.demoapp"
        minSdkVersion 21
        targetSdkVersion 29
        versionCode versioning.getVersionCode()
        versionName versioning.getVersionName()
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
        javaCompileOptions {
            annotationProcessorOptions {
                arguments = [
                        "room.schemaLocation": "$projectDir/schemas" . toString(),"room.incremental": "true","room.expandProjection": "true"
                ]
            }
        }
        testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
        testInstrumentationRunnerArgument("runnerBuilder","de.mannodermaus.junit5.Androidjunit5Builder")
    }
    testBuildType "alpha"
    sourceSets {
        main.java.srcDirs += 'src/main/kotlin'
        androidTest.assets.srcDirs += files("$projectDir/schemas" . toString())
    }
    signingConfigs {
        debug {
            keyAlias keystoreProperties['debugKeyAlias']
            keyPassword keystoreProperties['debugKeyPassword']
            storeFile file(rootDir.getCanonicalPath() + '/' + keystoreProperties['debugKeyStore'])
            storePassword keystoreProperties['debugStorePassword']
        }
        release {
            keyAlias keystoreProperties['releaseKeyAlias']
            keyPassword keystoreProperties['releaseKeyPassword']
            storeFile file(rootDir.getCanonicalPath() + '/' + keystoreProperties['releaseKeyStore'])
            storePassword keystoreProperties['releaseStorePassword']
        }
    }
    buildTypes {
        alpha {
            applicationIdSuffix ".alpha"
            debuggable true
            minifyEnabled false
            signingConfig signingConfigs.debug
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'),'proguard-rules.pro'
        }
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'),'proguard-rules.pro'
            signingConfig signingConfigs.release
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    testOptions {
        unitTests {
            includeAndroidResources = true
        }
    }
    packagingOptions {
        exclude 'meta-inf/atomicfu.kotlin_module'
        exclude "meta-inf/LICENSE*"
    }
    kotlinoptions {
        jvmTarget = "1.8"
    }
}

dependencies {
    implementation filetree(dir: 'libs',include: ['*.jar'])

    // Kotlin
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

    // AndroidX
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'androidx.core:core-ktx:1.3.1'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
    testImplementation 'androidx.test:core:1.3.0'

    // ACRA
    implementation "ch.acra:acra-mail:$acra_version"
    implementation "ch.acra:acra-notification:$acra_version"

    // Room components
    implementation "androidx.room:room-runtime:$room_version"
    implementation "androidx.room:room-ktx:$room_version"
    kapt "androidx.room:room-compiler:$room_version"
    androidTestImplementation "androidx.room:room-testing:$room_version"

    // Lifecycle components
    implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
    implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"
    androidTestImplementation "androidx.arch.core:core-testing:$androidx_version"

    // viewmodel Kotlin support
    implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"

    // Co-routines
    api "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines"

    // Material UI
    implementation "com.google.android.material:material:$material_version"

    // LeakCanary
    debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.2'
    alphaimplementation 'com.squareup.leakcanary:leakcanary-android:2.2'

    // Navigation
    implementation 'androidx.navigation:navigation-fragment-ktx:2.3.0'
    implementation 'androidx.navigation:navigation-ui-ktx:2.3.0'

    // Junit
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
    androidTestImplementation "androidx.test:runner:1.3.0"
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.ext:junit-ktx:1.1.2'
    androidTestImplementation "de.mannodermaus.junit5:android-test-core:1.2.0"
    androidTestRuntimeOnly "de.mannodermaus.junit5:android-test-runner:1.2.0"

    // Espresso
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
    androidTestImplementation 'androidx.test:rules:1.3.0'
}

现在,当我尝试运行测试时,这是 Build Output 显示给我的

任务:app:compileAlphaAndroidTestKotlin失败
e:RoundImageTest.kt:(5,18):未解析的参考:jupiter
e:RoundImageTest.kt:(9,16):未解析的参考:jupiter
e:RoundImageTest.kt:(16,9):未解析的引用:assertTrue
e:RoundImageTest.kt:(23,9):未解析的引用:assertTrue
e:RoundImageTest.kt:(30,9):未解析的引用:assertTrue

解决方法

显然,我要做的就是改变

IChangeFeedObserverContext.FeedResponse

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'