gpt4 book ai didi

android - Unresolved reference : junit4: Android ComposeUI testing

转载 作者:行者123 更新时间:2023-12-04 23:50:21 28 4
gpt4 key购买 nike

我试图测试我在 android 中使用 jetpack compose 构建的 UI,并添加了这些依赖项来设置它

    androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.1.0"
debugImplementation "androidx.compose.ui:ui-test-manifest:1.0.5"
对于测试,我刚刚开始编写以下内容
class LoginActivityComposeTest {
@get:Rule
val composeTestRule = createComposeRule()

@Test
fun socialPluginsTest() {
composeTestRule.setContent {
SocialLogins()
}
}
}
我尝试导入的 createComposeRule() 不可用。我尝试从 import androidx.compose.ui.test.junit4.createComposeRule 手动导入但是,当我尝试运行测试后,出现错误显示 Unresolved reference: junit4这是我正在使用的完整 build.gradle 依赖项
compose_version = '1.0.1'
改造版本 = '2.9.0'
    implementation "androidx.core:core-ktx:1.7.0"
implementation "androidx.compose.ui:ui:$compose_version"
implementation "androidx.compose.material:material:$compose_version"
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.4.0"
implementation "androidx.activity:activity-compose:1.4.0"
implementation "androidx.navigation:navigation-compose:2.5.0-alpha01"
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
implementation "com.squareup.retrofit2:adapter-rxjava2:$retrofit_version"
implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
implementation "io.reactivex.rxjava2:rxkotlin:2.4.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0"
implementation 'com.google.android.gms:play-services-auth:20.1.0'
implementation "io.coil-kt:coil-compose:1.4.0"
testImplementation "junit:junit:4.13.2"
androidTestImplementation "androidx.test.espresso:espresso-core:3.4.0"
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.1.0"
debugImplementation "androidx.compose.ui:ui-test-manifest:1.0.5"

最佳答案

您可能需要添加 @RunWith(AndroidJUnit4::class)到你的测试类的顶部。
我不能说 100% 准确,因为我不确定在你的 gradle 设置中还有什么可能导致这种情况,但我遇到了类似的问题,这就是我的解决方案。

关于android - Unresolved reference : junit4: Android ComposeUI testing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71079112/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com