web-dev-qa-db-ja.com

「プロセスがクラッシュしました」が原因で、計装の実行に失敗しました。

次のテストを実行したかったです。

package com.xxx.yyy;

import Android.content.Context;
import androidx.test.InstrumentationRegistry;
import androidx.test.runner.AndroidJUnit4;

import org.junit.Test;
import org.junit.runner.RunWith;

import static org.junit.Assert.*;

/**
 * Instrumented test, which will execute on an Android device.
 *
 * @see <a href="http://d.Android.com/tools/testing">Testing documentation</a>
 */
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
    @Test
    public void useAppContext() {
        // Context of the app under test.
        Context appContext = InstrumentationRegistry.getTargetContext();

        assertEquals("com.xxx.yyy", appContext.getPackageName());
    }
}

しかし、コンソールにエラーが表示されます。

$ adb Shell am instrument -w -r   -e debug false -e class 'com.xxx.yyy.ExampleInstrumentedTest' com.xxx.yyy.test/Android.support.test.runner.AndroidJUnitRunner
Client not ready yet..
Started running tests
Test running failed: Instrumentation run failed due to 'Process crashed.'
Empty test suite.

なぜ機能しないのか、私には理解できません。

ここに私のgradleファイルがあります:

apply plugin: 'com.Android.application'
apply plugin: 'kotlin-Android'

apply plugin: 'org.greenrobot.greendao' // das kann dann später weg
//apply plugin: 'kotlin-kapt' // if using Kotlin
//apply plugin: 'io.objectbox'


Android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.xxx.yyy"
        minSdkVersion 21
        targetSdkVersion 28    
        versionCode 130
        versionName "1.3.0"
        testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
        }
    }
}

greendao {
    schemaVersion 4
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.0'
    implementation 'com.google.Android.material:material:1.0.0'
    implementation 'androidx.vectordrawable:vectordrawable:1.0.0'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
    implementation 'org.greenrobot:greendao:3.2.2'
    implementation 'com.google.firebase:firebase-core:16.0.3'
    implementation 'com.google.firebase:firebase-ads:15.0.1'
    testImplementation 'junit:junit:4.12'
    implementation 'com.github.PhilJay:MPAndroidChart:v3.0.2'
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.Android.support.constraint:constraint-layout:1.1.3'
    androidTestImplementation 'com.Android.support.test.espresso:espresso-core:3.0.2'
    androidTestImplementation 'com.Android.support.test:runner:1.0.2'
    androidTestImplementation 'com.Android.support.test:rules:1.0.2'
}

apply plugin: 'com.google.gms.google-services'

助言がありますか?

19
gurehbgui

自分で解決策を見つけました。 AndroidXに更新したため、次のbuild.gradleファイルも更新する必要がありました。

testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
46
gurehbgui

私は間違った:

Test running failed: Instrumentation run failed due to 'Process crashed.'

私の場合、Androidテストコンソールは詳細なしで上記のエラーのみを表示します

しかし、logcatではエラー詳細が表示されます。私の場合は、AndroidManifest.xmlにadmob app_idを追加するのを忘れているためです

そう

エラーの詳細については、logcatを参照してください

エラーの詳細については、logcatを参照してください

エラーの詳細については、logcatを参照してください

3
chikadance
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test:core:1.1.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test:rules:1.1.1'

androidx.test.runner.AndroidJunitRunner設定を除き、依存関係も確認してください。上記のコードは私のために働いています。

0
XccX