mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-18 10:18:20 +00:00
Fixing tests related to abstraction
Flag: NONE - fixing tests Test: built and ran locally, verified test pass in presubmit Bug: 224595066 Change-Id: Ifefab1e1696853c5bd816a361314082073ba8a20
This commit is contained in:
@@ -78,7 +78,7 @@ class SplitAnimationControllerTest {
|
||||
private val mockSplitSourceDrawable: Drawable = mock()
|
||||
private val mockSplitSourceView: View = mock()
|
||||
|
||||
private val stateManager: StateManager<*> = mock()
|
||||
private val stateManager: StateManager<*, *> = mock()
|
||||
private val depthController: DepthController = mock()
|
||||
private val transitionInfo: TransitionInfo = mock()
|
||||
private val transaction: Transaction = mock()
|
||||
|
||||
@@ -31,6 +31,7 @@ import com.android.launcher3.logging.StatsLogManager.StatsLogger
|
||||
import com.android.launcher3.model.data.ItemInfo
|
||||
import com.android.launcher3.statehandlers.DepthController
|
||||
import com.android.launcher3.statemanager.StateManager
|
||||
import com.android.launcher3.statemanager.StatefulActivity
|
||||
import com.android.launcher3.util.ComponentKey
|
||||
import com.android.launcher3.util.SplitConfigurationOptions
|
||||
import com.android.quickstep.RecentsModel
|
||||
@@ -61,7 +62,7 @@ class SplitSelectStateControllerTest {
|
||||
private val depthController: DepthController = mock()
|
||||
private val statsLogManager: StatsLogManager = mock()
|
||||
private val statsLogger: StatsLogger = mock()
|
||||
private val stateManager: StateManager<LauncherState> = mock()
|
||||
private val stateManager: StateManager<LauncherState, StatefulActivity<LauncherState>> = mock()
|
||||
private val handler: Handler = mock()
|
||||
private val context: RecentsViewContainer = mock()
|
||||
private val recentsModel: RecentsModel = mock()
|
||||
|
||||
Reference in New Issue
Block a user