diff options
| author | 2024-07-11 16:59:50 +0000 | |
|---|---|---|
| committer | 2024-07-11 19:02:48 +0000 | |
| commit | 1aa096a9d48b42a595f0c72c133d0d39cf0dedf9 (patch) | |
| tree | df4456e04b50ce4b63ecbbaf264be5c36c98797f | |
| parent | d084fe5750ef50eee46dff1edcfc12df21d6f2f8 (diff) | |
[HUN] Add NotificationsHeadsUpRefactor to HeadsUpManagerPhoneTest
We add NotificationsHeadsUpRefactor into HeadsUpManagerPhoneTest params to ensure existing functionality.
Bug: 341921946
Flag: EXEMPT TEST
Test: Presubmit
Change-Id: Ide91eb72da06d210f49644cd21cc50bac249517c
| -rw-r--r-- | packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/policy/HeadsUpManagerPhoneTest.kt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/policy/HeadsUpManagerPhoneTest.kt b/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/policy/HeadsUpManagerPhoneTest.kt index b5c11e1ba877..663cf1c44dad 100644 --- a/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/policy/HeadsUpManagerPhoneTest.kt +++ b/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/policy/HeadsUpManagerPhoneTest.kt @@ -30,6 +30,7 @@ import com.android.systemui.statusbar.NotificationShadeWindowController import com.android.systemui.statusbar.notification.collection.provider.VisualStabilityProvider import com.android.systemui.statusbar.notification.collection.render.GroupMembershipManager import com.android.systemui.statusbar.notification.shared.NotificationThrottleHun +import com.android.systemui.statusbar.notification.shared.NotificationsHeadsUpRefactor import com.android.systemui.statusbar.phone.ConfigurationControllerImpl import com.android.systemui.statusbar.phone.HeadsUpManagerPhone import com.android.systemui.statusbar.phone.KeyguardBypassController @@ -221,6 +222,11 @@ class HeadsUpManagerPhoneTest(flags: FlagsParameterization) : BaseHeadsUpManager companion object { @get:Parameters(name = "{0}") val flags: List<FlagsParameterization> - get() = FlagsParameterization.allCombinationsOf(NotificationThrottleHun.FLAG_NAME) + get() = buildList { + addAll(FlagsParameterization.allCombinationsOf(NotificationThrottleHun.FLAG_NAME)) + addAll( + FlagsParameterization.allCombinationsOf(NotificationsHeadsUpRefactor.FLAG_NAME) + ) + } } } |