android 测试运行未能完成,检测运行由于进程崩溃而失败,模块内有调试器

k4aesqcs  于 2023-04-28  发布在  Android
关注(0)|答案(1)|浏览(122)

我开始为我的公司实现插装测试,以提高我们的代码质量和部署速度。我正在重写我们应用程序的一个模块,并试图实现TDD原则。我的代码目前无法工作,因此我想将调试器附加到插装测试中以验证其执行。除了在每次调试编译时,我都以错误Test run failed to complete. Instrumentation run failed due to Process crashed结束。
通过二分法,我创建了一个仅包含一个模块的简单项目,并启动了作为示例给出的工具测试。

/**
 * 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().targetContext
        assertEquals("com.example.mylibrary.test", appContext.packageName)
    }
}

同样的结果。然后我在app模块中启动了同样的工具测试,令人惊讶的是,调试器被附加并触发了断点。
不可能将调试器附加到模块中的工具测试??当我运行它时,测试工作并得到验证
您将在这里找到我的库的build.gradle文件

plugins {
    id 'com.android.library'
    id 'org.jetbrains.kotlin.android'
}

android {
    namespace 'com.example.mylibrary'
    compileSdk 33

    defaultConfig {
        minSdk 24
        targetSdk 33

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        consumerProguardFiles "consumer-rules.pro"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
        debug {
            testCoverageEnabled true
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

dependencies {

    implementation 'androidx.core:core-ktx:1.8.0'
    implementation 'androidx.appcompat:appcompat:1.4.1'
    implementation 'com.google.android.material:material:1.5.0'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

没什么特别的,这是在创建项目时创建的文件。app模块的build.gradle也是如此

plugins {
    id 'com.android.application'
    id 'org.jetbrains.kotlin.android'
}

android {
    namespace 'com.example.myapplication'
    compileSdk 33

    defaultConfig {
        applicationId "com.example.myapplication"
        minSdk 24
        targetSdk 33
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

        vectorDrawables {
            useSupportLibrary true
        }
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
    buildFeatures {
        compose true
    }
    composeOptions {
        kotlinCompilerExtensionVersion '1.3.2'
    }
    packagingOptions {
        resources {
            excludes += '/META-INF/{AL2.0,LGPL2.1}'
        }
    }
}

dependencies {
   
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
    androidTestImplementation platform('androidx.compose:compose-bom:2022.10.00')
    androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
   /** remaining dependencies ommitted to reduce noice **
}

Android Studio Flamingo和Gradle 8.0
提前感谢你的帮助
申德拉

dsekswqp

dsekswqp1#

更新:

刚找到解决此问题的方法:
转到运行配置并将调试类型更改为“仅Java”

您可以在以下链接中找到有关此问题的详细信息
https://issuetracker.google.com/issues/268213434https://issuetracker.google.com/issues/264388220

老答案:

我也面临着这个特殊的错误,但它只是在我将Android Studio升级到Flamingo时才开始的。
通过将版本降级回Android Studio Electric Eel为我解决了这个问题。
您可以找到以前的Android Studio版本here

相关问题