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

时间:2016-06-10 04:30:35

标签: android junit

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

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

如何创建位置?

据我所知,我必须在build.gradle依赖项中包含Location testCompile' ...' 但我无法找到要包含的内容。

你能帮忙吗? 提前谢谢。

1 个答案:

答案 0 :(得分:0)

在您的模块 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 {
    ...
}

应该就是这样了。