Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/
H A DNotificationInterruptStateProviderImplTest.java295 assertThat(mNotifInterruptionStateProvider.shouldHeadsUp(createBubble())).isFalse(); in testShouldNotHeadsUp_bubble()
408 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isTrue(); in testShouldBubbleUp()
418 NotificationEntry entry = createBubble(); in shouldNotBubbleUp_notAllowedToBubble()
464 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isFalse(); in shouldNotBubbleUp_suppressedInterruptions()
474 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isFalse(); in shouldNotBubbleUp_filteredOut()
477 private NotificationEntry createBubble() { in createBubble() method in NotificationInterruptStateProviderImplTest
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DNotificationTestHelper.java244 public ExpandableNotificationRow createBubble() in createBubble() method in NotificationTestHelper
295 public NotificationEntry createBubble(@Nullable PendingIntent deleteIntent) { in createBubble() method in NotificationTestHelper
296 return createBubble(makeBubbleMetadata(deleteIntent), USER_HANDLE); in createBubble()
304 public NotificationEntry createBubble(UserHandle handle) { in createBubble() method in NotificationTestHelper
305 return createBubble(makeBubbleMetadata(null), handle); in createBubble()
313 private NotificationEntry createBubble(BubbleMetadata metadata, UserHandle userHandle) { in createBubble() method in NotificationTestHelper
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
H A DBubblesTest.java278 mRow = mNotificationTestHelper.createBubble(mDeleteIntent); in setUp()
279 mRow2 = mNotificationTestHelper.createBubble(mDeleteIntent); in setUp()
280 mRow3 = mNotificationTestHelper.createBubble(mDeleteIntent); in setUp()
289 mNotificationTestHelper.createBubble(handle)); in setUp()
291 mNotificationTestHelper.createBubble(handle)); in setUp()
1196 final Bubble bubble = createBubble(workProfileUserId, workPkg); in test_bubbleViewInfoGetPackageForUser()
1295 private Bubble createBubble(int userId, String pkg) { in createBubble() method in BubblesTest
H A DNewNotifPipelineBubblesTest.java251 mRow = mNotificationTestHelper.createBubble(mDeleteIntent); in setUp()
252 mRow2 = mNotificationTestHelper.createBubble(mDeleteIntent); in setUp()
260 mNotificationTestHelper.createBubble(handle)); in setUp()
262 mNotificationTestHelper.createBubble(handle)); in setUp()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DStatusBarNotificationActivityStarterTest.java171 mBubbleNotificationRow = mNotificationTestHelper.createBubble(); in setUp()