Home
last modified time | relevance | path

Searched refs:profileServiceClass (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/
DTestUtils.java137 Class<T> profileServiceClass) throws TimeoutException { in startService() argument
143 new Intent(InstrumentationRegistry.getTargetContext(), profileServiceClass); in startService()
148 ArgumentCaptor<ProfileService> profile = ArgumentCaptor.forClass(profileServiceClass); in startService()
151 Assert.assertEquals(profileServiceClass.getName(), profile.getValue().getClass().getName()); in startService()
168 Class<T> profileServiceClass) throws TimeoutException { in stopService() argument
174 new Intent(InstrumentationRegistry.getTargetContext(), profileServiceClass); in stopService()
179 ArgumentCaptor<ProfileService> profile = ArgumentCaptor.forClass(profileServiceClass); in stopService()
182 Assert.assertEquals(profileServiceClass.getName(), profile.getValue().getClass().getName()); in stopService()