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.java136 Class<T> profileServiceClass) throws TimeoutException { in startService() argument
142 new Intent(InstrumentationRegistry.getTargetContext(), profileServiceClass); in startService()
147 ArgumentCaptor<ProfileService> profile = ArgumentCaptor.forClass(profileServiceClass); in startService()
150 Assert.assertEquals(profileServiceClass.getName(), profile.getValue().getClass().getName()); in startService()
167 Class<T> profileServiceClass) throws TimeoutException { in stopService() argument
173 new Intent(InstrumentationRegistry.getTargetContext(), profileServiceClass); in stopService()
178 ArgumentCaptor<ProfileService> profile = ArgumentCaptor.forClass(profileServiceClass); in stopService()
181 Assert.assertEquals(profileServiceClass.getName(), profile.getValue().getClass().getName()); in stopService()