Robolectric 3.0 中缺少 ShadowGeocoder?

ShadowGeocoder missing in Robolectric 3.0?

我正在尝试使用 Robolectric 3.0 为某些使用 android.location.Geocoder 但 API 中提到的 ShadowGeocoder 的代码创建测试(此处:http://robolectric.org/javadoc/3.0/org/robolectric/shadows/maps/ShadowGeocoder.html) 似乎没有出现在发布的包中。

此外,文档和包中似乎都没有shadowOf(android.location.Geocoder)

是我做错了什么还是其他人运行遇到了类似的问题?

将此行添加到您的 build.gradle:

dependencies {
    ...
    testCompile 'org.robolectric:shadows-maps:3.0'
    ...
}