Searched refs:onNotificationClicked (Results 1 – 2 of 2) sorted by relevance
/packages/apps/Car/Notification/tests/robotests/src/com/android/car/notification/ |
D | NotificationClickHandlerFactoryTest.java | 131 verify(mListener1, never()).onNotificationClicked(anyInt(), any(AlertEntry.class)); in onClickClickHandler_noIntent_returnsImmediately() 160 verify(mListener1).onNotificationClicked(anyInt(), any(AlertEntry.class)); in onClickClickHandler_intentExists_invokesRegisteredClickListeners() 233 verify(mListener1, never()).onNotificationClicked(anyInt(), any(AlertEntry.class)); in onClickActionClickHandler_isReplyAction_doesNotInvokeRegisteredClickListeners() 278 verify(mListener1).onNotificationClicked(anyInt(), any(AlertEntry.class)); in onClickActionClickHandler_notCarCompatibleMessage_invokesRegisteredListeners() 356 verify(mListener1).onNotificationClicked(ActivityManager.START_SUCCESS, mAlertEntry1); in onNotificationClicked_twoListenersRegistered_invokesTwoHandlerCallbacks() 357 verify(mListener2).onNotificationClicked(ActivityManager.START_SUCCESS, mAlertEntry1); in onNotificationClicked_twoListenersRegistered_invokesTwoHandlerCallbacks() 368 verify(mListener1).onNotificationClicked(ActivityManager.START_SUCCESS, mAlertEntry1); in onNotificationClicked_oneListenersUnregistered_invokesRegisteredCallback() 369 verify(mListener2, never()).onNotificationClicked(ActivityManager.START_SUCCESS, in onNotificationClicked_oneListenersUnregistered_invokesRegisteredCallback() 379 verify(mListener1).onNotificationClicked(ActivityManager.START_SUCCESS, mAlertEntry1); in onNotificationClicked_duplicateListenersRegistered_invokesCallbackOnce() 393 .onNotificationClicked(ActivityManager.START_SUCCESS, mAlertEntry1); in onNotificationClicked_twoAlertEntriesSubscribe_passesTheRightAlertEntry() [all …]
|
/packages/apps/Car/Notification/src/com/android/car/notification/ |
D | NotificationClickHandlerFactory.java | 64 void onNotificationClicked(int launchResult, AlertEntry alertEntry); in onNotificationClicked() method 299 listener -> listener.onNotificationClicked(launceResult, alertEntry));
|