Fix NavButtonLayoutFactoryTest init dependency to turn on enableTaskbarNavbarUnification

Fixes: 325084350
Test: run the unit test with the unification flag on, make sure it passes
Change-Id: I5f811585ec0c5c04578cbf7990b9790bdb900ee5
This commit is contained in:
Tracy Zhou
2024-02-13 21:45:02 -08:00
parent bbb26c51d6
commit 6800a71f95
@@ -1,5 +1,6 @@
package com.android.launcher3.taskbar.navbutton
import android.content.res.Configuration
import android.content.res.Resources
import android.view.Surface
import android.view.Surface.ROTATION_270
@@ -41,6 +42,7 @@ class NavButtonLayoutFactoryTest {
private val mockRotationButton: RotationButton = mock()
private val mockA11yButton: ImageView = mock()
private val mockSpace: Space = mock()
private val mockConfiguration: Configuration = mock();
private var surfaceRotation = Surface.ROTATION_0
@@ -59,6 +61,9 @@ class NavButtonLayoutFactoryTest {
.thenReturn(mockEndContextualLayout)
whenever(mockParentButtonContainer.requireViewById<ViewGroup>(ID_START_CONTEXTUAL_BUTTONS))
.thenReturn(mockStartContextualLayout)
whenever(mockBackButton.resources).thenReturn(mockResources)
whenever(mockResources.configuration).thenReturn(mockConfiguration)
whenever(mockConfiguration.layoutDirection).thenReturn(0)
}
@Test