我有一个AndroidTestCase
,我在装有 Android 4.1.2 操作系统的真实设备上运行我的测试。
public class MyLocationTest extends AndroidTestCase{
private String TEST_PROVIDER = LocationManager.NETWORK_PROVIDER;
@Override
public void setUp() throws Exception{
super.setUp();
mLocationManager = (LocationManager) getContext()
.getSystemService(Context.LOCATION_SERVICE);
//I check what are the providers available,
//the log shows me: network, gps, passive
List<String> providers = mLocationManager.getAllProviders();
for(int i=0; i<providers.size(); i++){
Log.i("DEBUG", "Provider: "+providers.get(i));
}
//The following code raise Exception: java.lang.IllegalArgumentException: Provider "network" unknown
mLocationManager.setTestProviderEnabled(TEST_PROVIDER, true);
mLocationManager.setTestProviderStatus(TEST_PROVIDER, LocationProvider.AVAILABLE, null, System.currentTimeMillis());
}
}
在setUp()
上述测试用例的阶段,我检查了可用的提供程序,并在日志中获得了“网络” 。然后,我调用setTestProviderEnabled(TEST_PROVIDER, true)
,但我得到了 Exception: java.lang.IllegalArgumentException: Provider "network" unknown
我不明白为什么?我有“网络”提供商,但我得到了这个例外......
顺便说一句,我在设备上启用了“允许模拟位置”,还连接了 wifi 网络。