gpt4 book ai didi

android - 如何在 android 单元测试中创建位置?

转载 作者:行者123 更新时间:2023-12-05 07:49:12 25 4
gpt4 key购买 nike

我想使用 JUnit 4 在 android 单元测试中创建一个位置。

与位置 loc = 新位置(...)loc 为空。

如何创建位置?

据我所知,我必须在 build.gradle 依赖项中包含 Location测试编译'...'但我找不到要包含的内容。

你能帮忙吗?提前致谢。

最佳答案

在你的模块 build.gradle 中:

apply plugin: 'com.android.application'

android {
...
testOptions {
unitTests.returnDefaultValues = true
}
}

dependencies {

testImplementation 'junit:junit:4.13.2'
testImplementation "org.robolectric:robolectric:4.2.1"
...
}

您的测试类必须包含以下内容:

@RunWith(RobolectricTestRunner.class)
public class LocationTest {
...
}

应该就是这样。

关于android - 如何在 android 单元测试中创建位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37739943/

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