Home
last modified time | relevance | path

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

/aosp12/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/
H A DCarNotificationListenerTest.java98 verify(mNotificationDataManager, never()).addNewMessageNotification(any(AlertEntry.class)); in onNotificationPosted_isHun_notForCurrentUser_ignoresTheEvent()
110 verify(mNotificationDataManager, never()).addNewMessageNotification(any(AlertEntry.class)); in onNotificationPosted_isNotHun_notForCurrentUser_ignoresTheEvent()
122 verify(mNotificationDataManager).addNewMessageNotification(any(AlertEntry.class)); in onNotificationPosted_isHun_isForCurrentUser_addsAlertEntryToDataManager()
145 verify(mNotificationDataManager).addNewMessageNotification(any(AlertEntry.class)); in onNotificationPosted_isHun_isForAllUsers_addsAlertEntryToDataManager()
180 verify(mNotificationDataManager).addNewMessageNotification(any(AlertEntry.class)); in onNotificationPosted_isNotHun_isForCurrentUser_addsAlertEntryToDataManager()
205 verify(mNotificationDataManager, never()).addNewMessageNotification(any(AlertEntry.class)); in onNotificationPosted_lowPriority_isForCurrentUser_untracksUnseenNotification()
217 verify(mNotificationDataManager).addNewMessageNotification(any(AlertEntry.class)); in onNotificationPosted_isNotHun_isForAllUsers_addsAlertEntryToDataManager()
242 verify(mNotificationDataManager, never()).addNewMessageNotification(any(AlertEntry.class)); in onNotificationPosted_lowPriority_isForAllUsers_untracksUnseenNotification()
H A DNotificationDataManagerTest.java100 mNotificationDataManager.addNewMessageNotification(mNonMessageNotification); in addNewMessageNotification_newNonMessageNotification_doesNothing()
108 mNotificationDataManager.addNewMessageNotification(mMessageNotification); in addNewMessageNotification_notificationExists_muteStateNotUpdated()
111 mNotificationDataManager.addNewMessageNotification(mMessageNotification); in addNewMessageNotification_notificationExists_muteStateNotUpdated()
118 mNotificationDataManager.addNewMessageNotification(mNonMessageNotification); in toggleMute_nonMessagingNotification_doesNothing()
127 mNotificationDataManager.addNewMessageNotification(mMessageNotification); in toggleMute_messagingNotification_togglesMuteState()
H A DNotificationClickHandlerFactoryTest.java312 notificationDataManager.addNewMessageNotification(mAlertEntryMessageHeadsUp); in onClickMuteClickHandler_togglesMute()
335 notificationDataManager.addNewMessageNotification(mAlertEntryMessageHeadsUp); in onClickMuteClickHandler_isMuted_muteStatusSetTrue()
350 notificationDataManager.addNewMessageNotification(mAlertEntryMessageHeadsUp); in onClickMuteClickHandler_isUnmuted_muteStatusSetFalse()
/aosp12/packages/apps/Car/Notification/src/com/android/car/notification/
H A DNotificationDataManager.java108 void addNewMessageNotification(AlertEntry alertEntry) { in addNewMessageNotification() method in NotificationDataManager
190 addNewMessageNotification(alertEntry); in isMessageNotificationMuted()
H A DCarNotificationListener.java246 mNotificationDataManager.addNewMessageNotification(alertEntry); in notifyNotificationPosted()