Home
last modified time | relevance | path

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

/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/applications/specialaccess/
DAppOpsPreferenceControllerTest.java233 ArgumentCaptor<AppEntryListManager.AppFilterProvider> filterCaptor = in appFilter_showingSystemApps_keepsSystemEntries() local
235 verify(mMockAppEntryListManager).init(any(), filterCaptor.capture(), any()); in appFilter_showingSystemApps_keepsSystemEntries()
236 ApplicationsState.AppFilter filter = filterCaptor.getValue().getAppFilter(); in appFilter_showingSystemApps_keepsSystemEntries()
250 ArgumentCaptor<AppEntryListManager.AppFilterProvider> filterCaptor = in appFilter_notShowingSystemApps_removesSystemEntries() local
252 verify(mMockAppEntryListManager).init(any(), filterCaptor.capture(), any()); in appFilter_notShowingSystemApps_removesSystemEntries()
253 ApplicationsState.AppFilter filter = filterCaptor.getValue().getAppFilter(); in appFilter_notShowingSystemApps_removesSystemEntries()
266 ArgumentCaptor<AppEntryListManager.AppFilterProvider> filterCaptor = in appFilter_removesNullExtraInfoEntries() local
268 verify(mMockAppEntryListManager).init(any(), filterCaptor.capture(), any()); in appFilter_removesNullExtraInfoEntries()
269 ApplicationsState.AppFilter filter = filterCaptor.getValue().getAppFilter(); in appFilter_removesNullExtraInfoEntries()
DPremiumSmsAccessPreferenceControllerTest.java181 ArgumentCaptor<AppEntryListManager.AppFilterProvider> filterCaptor = in appFilter_removesUnknownStates() local
183 verify(mMockAppEntryListManager).init(any(), filterCaptor.capture(), any()); in appFilter_removesUnknownStates()
184 ApplicationsState.AppFilter filter = filterCaptor.getValue().getAppFilter(); in appFilter_removesUnknownStates()
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/task/
DDownloadPackageTaskTest.java208 ArgumentCaptor<IntentFilter> filterCaptor = ArgumentCaptor.forClass( in verifyDownloadReceiver() local
212 filterCaptor.capture(), in verifyDownloadReceiver()
215 assertEquals(filterCaptor.getValue().getAction(0), in verifyDownloadReceiver()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/systemui/keyguard/
DExperimentalCarKeyguardServiceTest.java124 ArgumentCaptor<UserLifecycleEventFilter> filterCaptor = ArgumentCaptor.forClass( in onInit_registersListeners() local
126 verify(mMockCarUserService).addUserLifecycleListener(filterCaptor.capture(), any()); in onInit_registersListeners()
127 int[] eventTypes = filterCaptor.getValue().getEventTypes(); in onInit_registersListeners()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallAudioRouteStateMachineTest.java358 ArgumentCaptor<IntentFilter> filterCaptor = ArgumentCaptor.forClass(IntentFilter.class); in testStreamRingMuteChange() local
359 verify(mContext, times(3)).registerReceiver(brCaptor.capture(), filterCaptor.capture()); in testStreamRingMuteChange()
363 IntentFilter filter = filterCaptor.getAllValues().get(ix); in testStreamRingMuteChange()