Home
last modified time | relevance | path

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

/packages/apps/Car/CompanionDeviceSupport/tests/unit/src/com/android/car/companiondevicesupport/feature/notificationmsg/
DNotificationMsgDelegateTest.java144 NotificationManager mMockNotificationManager; field in NotificationMsgDelegateTest
164 mNotificationMsgDelegate.setNotificationManager(mMockNotificationManager); in setUp()
186 verify(mMockNotificationManager).notify(anyInt(), mNotificationCaptor.capture()); in newConversationShouldPostNewNotification()
196 verify(mMockNotificationManager).notify(mNotificationIdCaptor.capture(), in multipleNewConversationShouldPostMultipleNewNotifications()
202 verify(mMockNotificationManager, times(2)).notify(mNotificationIdCaptor.capture(), in multipleNewConversationShouldPostMultipleNewNotifications()
218 verify(mMockNotificationManager, never()).notify(anyInt(), any(Notification.class)); in invalidConversationShouldDoNothing()
225 verify(mMockNotificationManager).notify(mNotificationIdCaptor.capture(), in newMessageShouldUpdateConversationNotification()
235 verify(mMockNotificationManager, times(2)).notify(eq(notificationId), in newMessageShouldUpdateConversationNotification()
252 verify(mMockNotificationManager).notify(mNotificationIdCaptor.capture(), in existingConversationShouldUpdateNotification()
264 verify(mMockNotificationManager, times(2)).notify(eq(notificationId), in existingConversationShouldUpdateNotification()
[all …]
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/
DCellBroadcastListActivityTest.java75 private NotificationManager mMockNotificationManager; field in CellBroadcastListActivityTest
85 injectSystemService(NotificationManager.class, mMockNotificationManager); in setUp()
99 verify(mMockNotificationManager).cancel(eq(CellBroadcastAlertService.NOTIFICATION_ID)); in testOnCreate()