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.java126 @Captor private ArgumentCaptor<NotificationEntry> mEntryCaptor; field in NotifCollectionTest
220 verify(mCollectionListener, times(2)).onEntryAdded(mEntryCaptor.capture()); in testEventDispatchedWhenNotifBatchPosted()
222 List<NotificationEntry> capturedAdds = mEntryCaptor.getAllValues(); in testEventDispatchedWhenNotifBatchPosted()
231 verify(mCollectionListener).onEntryUpdated(mEntryCaptor.capture()); in testEventDispatchedWhenNotifBatchPosted()
232 NotificationEntry capturedUpdate = mEntryCaptor.getValue(); in testEventDispatchedWhenNotifBatchPosted()
1336 verify(mCollectionListener).onEntryAdded(mEntryCaptor.capture()); in postNotif()
1337 return new CollectionEvent(rawEvent, requireNonNull(mEntryCaptor.getValue())); in postNotif()