如何从测试案例启动/绑定服务。我尝试使用ServiceTestCase它不起作用
最佳答案
从ServiceTestCase
文档中:
当您的一种测试方法调用ServiceTestCase.startService()
或ServiceTestCase.bindService()
时,测试用例将调用Service.onCreate()
,然后视情况调用Service.startService(Intent)
或Service.bindService(Intent, ServiceConnection, int)
。它还存储跟踪和支持生命周期所需的值。
关于android - 在Android中的TestCase中启动服务,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8238645/