Kotlin Android app ExampleInstrumentedTest не работает

#android #unit-testing #kotlin

#Android #модульное тестирование #kotlin

Вопрос:

Создал новое приложение Kotlin для Android с помощью Android Studio и пытается запустить пример инструментального теста следующим образом … с файлом gradle ниже и его ошибкой? Не уверен, как решить. Я попытался изменить контекст на val context: Context = ApplicationProvider.getApplicationContext(), но это просто выдает другую ошибку (похожую ошибку, но другую.

 package com.mycomp.myprog

import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.platform.app.InstrumentationRegistry
import org.junit.Test
import org.junit.runner.RunWith

import org.junit.Assert.*

/**
 * Instrumented test, which will execute on an Android device.
 *
 * See [testing documentation](http://d.android.com/tools/testing).
 */
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
    @Test
    fun useAppContext() {
        // Context of the app under test.
        val appContext = InstrumentationRegistry.getInstrumentation().context
        assertEquals("com.mycomp.myprog", appContext.packageName)
    }
}
  

Я получаю следующую ошибку

 org.junit.ComparisonFailure: expected:<com.mycomp.myprog[]> but was:<com.mycomp.myprog[.test]>
at org.junit.Assert.assertEquals(Assert.java:115)
at org.junit.Assert.assertEquals(Assert.java:144)
...
  

с помощью следующего gradle

 apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.mycomp.myprog"
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.1.0-alpha03'
    implementation 'androidx.core:core-ktx:1.1.0-alpha05'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    //testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.2-alpha02'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-alpha02'

    androidTestImplementation 'androidx.test.ext:junit:1.1.0'
    androidTestImplementation 'androidx.test:core:1.1.1-alpha02'

    // JUnit-4 framework (See vintage below)
    testImplementation 'junit:junit:4.12'
    testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.3.20'

    // JUnit-5 Jupiter
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.4.0'
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.4.0'

    // JUnit-5 (Vintage give access to JUnit-4)
    testImplementation "junit:junit:4.12"
    testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.4.0'
}
  

Ответ №1:

InstrumentationRegistry.getInstrumentation().context это контекст приложения instrumentation. Из вашего утверждения вам нужен контекст целевого инструментария, который val appContext = InstrumentationRegistry.getInstrumentation().targetContext

Комментарии:

1. Хм, хорошо, но при использовании этого я получаю эту ошибку вместо java.lang.AssertionError: expected:<com.mycomp.myprog> but was:<android.app.ContextImpl@c46f93e> at org.junit.Assert.fail(Assert.java:88) at org.junit.Assert.failNotEquals(Assert.java:834) at org.junit.Assert.assertEquals(Assert.java:118) at org.junit.Assert.assertEquals(Assert.java:144) at com.mycomp.myprog.ExampleInstrumentedTest.useAppContext(ExampleInstrumentedTest.kt:24)

2. О, я вижу, тогда вам нужно обновить assert до этого assertEquals("com.mycomp.myprog", appContext.packageName) , и это заставит его работать. 🙂