Home
last modified time | relevance | path

Searched refs:bubble1 (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/storage/
DBubbleVolatileRepositoryTest.kt47 private val bubble1 = BubbleEntity(user0.identifier, constant in com.android.wm.shell.bubbles.storage.BubbleVolatileRepositoryTest
59 private val user0bubbles = listOf(bubble1, bubble2, bubble3)
93 repository.addBubbles(user0.identifier, listOf(bubble1)) in testAddBubbles()
94 assertEquals(listOf(bubble2, bubble3, bubble1), repository.getEntities(user0.identifier)) in testAddBubbles()
108 assertEquals(listOf(bubble1, bubble2), repository.getEntities(user0.identifier).toList()) in testRemoveBubbles()
136 repository.addBubbles(user0.identifier, listOf(bubble1)) in testAddAndRemoveBubblesWhenExceedingCapacity()
138 assertEquals(listOf(bubble3, bubble1), repository.getEntities(user0.identifier).toList()) in testAddAndRemoveBubblesWhenExceedingCapacity()
162 .isEqualTo(listOf(bubble1, bubble2, bubble3)) in testRemoveBubblesForUser()
177 .isEqualTo(listOf(bubble1, bubble2, bubble3)) in testRemoveBubblesForUser_parentUserRemoved()
183 .isEqualTo(listOf(bubble1, bubble3)) in testRemoveBubblesForUser_parentUserRemoved()
[all …]
/frameworks/base/libs/WindowManager/Shell/multivalentTests/src/com/android/wm/shell/bubbles/
DBubbleStackViewTest.kt178 val bubble1 = createAndInflateChatBubble(key = "bubble1") in <lambda>() constant
181 bubbleStackView.addBubble(bubble1) in <lambda>()
222 bubble1.iconView!!.performClick() in <lambda>()
225 assertThat(bubbleData.selectedBubble).isEqualTo(bubble1) in <lambda>()
231 bubbleStackView.setSelectedBubble(bubble1) in <lambda>()
232 bubble1.iconView!!.performClick() in <lambda>()
236 assertThat(bubbleData.selectedBubble).isEqualTo(bubble1) in <lambda>()
269 val bubble1 = createAndInflateChatBubble(key = "bubble1") in <lambda>() constant
270 bubbleData.notificationEntryUpdated(bubble1, false, false) in <lambda>()
271 bubbleData.dismissBubbleWithKey(bubble1.key, Bubbles.DISMISS_USER_GESTURE) in <lambda>()