如何使用Robolectric 2测试在AndroidManifest.xml中声明的服务

时间:2013-05-23 20:13:09

标签: android robolectric

我在AndroidManifest.xml中声明了一个服务

<service android:name="com.test.app.Service" android:exported="false"/>

在测试期间,当我尝试这样的时候 - 我得到空列表。

final Intent intent = new Intent(context, Service.class);
List<ResolveInfo> result = context.getPackageManager().queryIntentServices(intent , 0);

我错过了什么?

1 个答案:

答案 0 :(得分:1)

目前不可能。 Robolectric issue