Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DNotifCollectionTest.java145 @Captor private ArgumentCaptor<NotificationEntry> mEntryCaptor; field in NotifCollectionTest
285 verify(mCollectionListener, times(2)).onEntryAdded(mEntryCaptor.capture()); in testEventDispatchedWhenNotifBatchPosted()
287 List<NotificationEntry> capturedAdds = mEntryCaptor.getAllValues(); in testEventDispatchedWhenNotifBatchPosted()
296 verify(mCollectionListener).onEntryUpdated(mEntryCaptor.capture()); in testEventDispatchedWhenNotifBatchPosted()
297 NotificationEntry capturedUpdate = mEntryCaptor.getValue(); in testEventDispatchedWhenNotifBatchPosted()
1770 verify(mCollectionListener).onEntryAdded(mEntryCaptor.capture()); in postNotif()
1771 return new CollectionEvent(rawEvent, requireNonNull(mEntryCaptor.getValue())); in postNotif()