Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DGbaManagerTest.java259 ArgumentCaptor<GbaAuthRequest> captor2 = ArgumentCaptor.forClass(GbaAuthRequest.class); in testMetricsGbaEvent() local
260 verify(mMockGbaServiceBinder, times(2)).authenticationRequest(captor2.capture()); in testMetricsGbaEvent()
262 GbaAuthRequest capturedRequest2 = captor2.getValue(); in testMetricsGbaEvent()
DDefaultPhoneNotifierTest.java273 ArgumentCaptor<int[]> captor2 = ArgumentCaptor.forClass(int[].class); in testNotifyPreciseCallState() local
275 eq(phoneId), eq(subId), captor2.capture(), eq(null), eq(null), eq(null)); in testNotifyPreciseCallState()
276 final int[] callStates2 = captor2.getValue(); in testNotifyPreciseCallState()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
DAuthRippleControllerTest.kt246 val captor2 = ArgumentCaptor in registersAndDeregisters() constant
248 verify(wakefulnessLifecycle).addObserver(captor2.capture()) in registersAndDeregisters()
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DSnoozeHelperTest.java241 ArgumentCaptor<PendingIntent> captor2 = ArgumentCaptor.forClass(PendingIntent.class); in testScheduleRepostsForPersistedNotifications() local
242 verify(mAm).setExactAndAllowWhileIdle(anyInt(), eq((long) 15), captor2.capture()); in testScheduleRepostsForPersistedNotifications()
243 assertEquals("key2", captor2.getValue().getIntent().getStringExtra(EXTRA_KEY)); in testScheduleRepostsForPersistedNotifications()