Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/
DBubbleTest.java49 private Notification mNotif; field in BubbleTest
60 when(mStatusBarNotification.getNotification()).thenReturn(mNotif); in setUp()
63 mNotif.extras = mExtras; in setUp()
72 doReturn(Notification.Style.class).when(mNotif).getNotificationStyle(); in testGetUpdateMessage_default()
80 doReturn(Notification.BigTextStyle.class).when(mNotif).getNotificationStyle(); in testGetUpdateMessage_bigText()
90 doReturn(Notification.MediaStyle.class).when(mNotif).getNotificationStyle(); in testGetUpdateMessage_media()
98 doReturn(Notification.InboxStyle.class).when(mNotif).getNotificationStyle(); in testGetUpdateMessage_inboxStyle()
113 doReturn(Notification.MessagingStyle.class).when(mNotif).getNotificationStyle(); in testGetUpdateMessage_messagingStyle()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
DForegroundServiceLifetimeExtenderTest.java44 private Notification mNotif; field in ForegroundServiceLifetimeExtenderTest
48 mNotif = new Notification.Builder(mContext, "") in setup()
55 when(mSbn.getNotification()).thenReturn(mNotif); in setup()
64 mNotif.flags |= Notification.FLAG_FOREGROUND_SERVICE; in testShouldExtendLifetime_should_foreground()
71 mNotif.flags |= Notification.FLAG_FOREGROUND_SERVICE; in testShouldExtendLifetime_shouldNot_foreground()
78 mNotif.flags = 0; in testShouldExtendLifetime_shouldNot_notForeground()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/wrapper/
DNotificationMediaTemplateViewWrapperTest.java57 private Notification mNotif; field in NotificationMediaTemplateViewWrapperTest
94 mNotif = builder.build(); in makeTestNotification()
95 assertTrue(mNotif.hasMediaSession()); in makeTestNotification()
97 mRow = new NotificationTestHelper(mContext).createRow(mNotif); in makeTestNotification()