我正在尝试使用JUNIT4为Android服务编写单元测试。 关注我的服务代码:
class myService extends Service {
// Binder given to clients
private IBinder mBinder = null;
@Override
public void onCreate() {
super.onCreate();
mBinder = new LocalBinder();
}
public int multiply(int x, int y){
return (x*y);
}
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
public class LocalBinder extends Binder {
public myService getService() {
// Return this instance of LocalService so clients can call public methods.
return myService.this;
}
}
}
我的单元测试代码:
public class testServiceUlt {
@Rule
public final ServiceTestRule mServiceRule = new ServiceTestRule();
@Test
public void testWithBoundService() throws TimeoutException, InterruptedException {
// Create the service Intent.
Intent serviceIntent =
new Intent(InstrumentationRegistry.getTargetContext(), myService.class);
// Bind the service and grab a reference to the binder.
IBinder binder = mServiceRule.bindService(serviceIntent);
// Get the reference to the service, or you can call public methods on the binder directly.
myService service = ((myService.LocalBinder) binder).getService();
int val = service.multiply(80, 0);
assertEquals("should be zero", 0, val);
}
}
问题是绑定器是Null,我收到以下错误: java.lang.NullPointerException:尝试调用虚方法' com.example.xxx.xxx.xxx com.example.xxx.xxx.xxx $ LocalBinder.getService()'在空对象引用上
你能告诉我什么是我的问题吗? P.S - 我知道如何使用Junit3和ServiceTestCase,但我想用Junit4
谢谢, Zachi
答案 0 :(得分:1)
我设法解决了这个问题。 我的AndroidManifest.xml文件错误地不包含服务。
答案 1 :(得分:0)
在我的情况下,问题是我在androidTest清单文件中声明了服务,该文件因任何原因都无法正常工作。