Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DNotifBindPipelineTest.java70 ArgumentCaptor<NotifCollectionListener> collectionListenerCaptor = in setUp() local
72 verify(collection).addCollectionListener(collectionListenerCaptor.capture()); in setUp()
73 NotifCollectionListener listener = collectionListenerCaptor.getValue(); in setUp()
H A DNotificationTestHelper.java193 ArgumentCaptor<NotifCollectionListener> collectionListenerCaptor = in NotificationTestHelper() local
195 verify(collection).addCollectionListener(collectionListenerCaptor.capture()); in NotificationTestHelper()
196 mBindPipelineEntryListener = collectionListenerCaptor.getValue(); in NotificationTestHelper()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ongoingcall/
H A DOngoingCallControllerTest.kt127 val collectionListenerCaptor = ArgumentCaptor.forClass(NotifCollectionListener::class.java) regex
128 verify(notificationCollection).addCollectionListener(collectionListenerCaptor.capture())
129 notifCollectionListener = collectionListenerCaptor.value!!