Home
last modified time | relevance | path

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

/packages/apps/Car/CompanionDeviceSupport/tests/unit/src/com/android/car/companiondevicesupport/feature/notificationmsg/
DNotificationMsgDelegateTest.java151 ArgumentCaptor<Integer> mNotificationIdCaptor; field in NotificationMsgDelegateTest
196 verify(mMockNotificationManager).notify(mNotificationIdCaptor.capture(), in multipleNewConversationShouldPostMultipleNewNotifications()
198 int firstNotificationId = mNotificationIdCaptor.getValue(); in multipleNewConversationShouldPostMultipleNewNotifications()
202 verify(mMockNotificationManager, times(2)).notify(mNotificationIdCaptor.capture(), in multipleNewConversationShouldPostMultipleNewNotifications()
206 assertThat((long) mNotificationIdCaptor.getValue()).isNotEqualTo(firstNotificationId); in multipleNewConversationShouldPostMultipleNewNotifications()
225 verify(mMockNotificationManager).notify(mNotificationIdCaptor.capture(), in newMessageShouldUpdateConversationNotification()
227 int notificationId = mNotificationIdCaptor.getValue(); in newMessageShouldUpdateConversationNotification()
252 verify(mMockNotificationManager).notify(mNotificationIdCaptor.capture(), in existingConversationShouldUpdateNotification()
254 int notificationId = mNotificationIdCaptor.getValue(); in existingConversationShouldUpdateNotification()
438 verify(mMockNotificationManager).notify(mNotificationIdCaptor.capture(), in clearAllAppDataShouldClearInternalDataAndNotifications()
[all …]