Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DNotificationTestHelper.java319 public ExpandableNotificationRow createBubble() in createBubble() method in NotificationTestHelper
387 public NotificationEntry createBubble(@Nullable PendingIntent deleteIntent) { in createBubble() method in NotificationTestHelper
388 return createBubble(makeBubbleMetadata(deleteIntent, false /* autoExpand */), USER_HANDLE); in createBubble()
396 public NotificationEntry createBubble(UserHandle handle) { in createBubble() method in NotificationTestHelper
397 return createBubble(makeBubbleMetadata(null /* deleteIntent */, false /* autoExpand */), in createBubble()
405 return createBubble(makeBubbleMetadata(null /* deleteIntent */, true /* autoExpand */), in createAutoExpandedBubble()
414 private NotificationEntry createBubble(BubbleMetadata metadata, UserHandle userHandle) { in createBubble() method in NotificationTestHelper
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/
H A DNotificationInterruptStateProviderImplTest.java316 assertThat(mNotifInterruptionStateProvider.shouldHeadsUp(createBubble())).isFalse(); in testShouldNotHeadsUp_bubble()
895 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isTrue(); in testShouldBubbleUp()
904 NotificationEntry bubble = createBubble("testgroup", GROUP_ALERT_SUMMARY); in testShouldBubbleUp_notifInGroupWithOnlySummaryAlerts()
913 NotificationEntry entry = createBubble(); in shouldNotBubbleUp_notAllowedToBubble()
953 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isFalse(); in shouldNotBubbleUp_suppressedInterruptions()
962 assertThat(mNotifInterruptionStateProvider.shouldBubbleUp(createBubble())).isFalse(); in shouldNotBubbleUp_filteredOut()
965 private NotificationEntry createBubble() { in createBubble() method in NotificationInterruptStateProviderImplTest
966 return createBubble(null, null); in createBubble()
969 private NotificationEntry createBubble(String groupKey, Integer groupAlert) { in createBubble() method in NotificationInterruptStateProviderImplTest
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
H A DBubblesTest.java443 mRow = mNotificationTestHelper.createBubble(mDeleteIntent); in setUp()
444 mRow2 = mNotificationTestHelper.createBubble(mDeleteIntent); in setUp()
452 mNotificationTestHelper.createBubble(handle)); in setUp()
454 mNotificationTestHelper.createBubble(handle)); in setUp()
1237 final Bubble bubble = createBubble(workProfileUserId, workPkg); in test_bubbleViewInfoGetPackageForUser()
1983 private Bubble createBubble(int userId, String pkg) { in createBubble() method in BubblesTest
1998 NotificationEntry notificationEntry = mNotificationTestHelper.createBubble(mDeleteIntent); in createBubbleEntry()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DStatusBarNotificationActivityStarterTest.java193 mBubbleNotificationRow = notificationTestHelper.createBubble(); in setUp()