Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
DKeyguardUnlockAnimationControllerTest.kt447 val mockLockscreenSmartspaceView = mock(View::class.java) in <lambda>() constant
448 whenever(mockLockscreenSmartspaceView.visibility).thenReturn(View.VISIBLE) in <lambda>()
449 keyguardUnlockAnimationController.lockscreenSmartspace = mockLockscreenSmartspaceView in <lambda>()
453 verify(mockLockscreenSmartspaceView).visibility = View.INVISIBLE in <lambda>()
458 val mockLockscreenSmartspaceView = mock(View::class.java) in <lambda>() constant
459 whenever(mockLockscreenSmartspaceView.visibility).thenReturn(View.INVISIBLE) in <lambda>()
460 keyguardUnlockAnimationController.lockscreenSmartspace = mockLockscreenSmartspaceView in <lambda>()
464 verify(mockLockscreenSmartspaceView, never()).visibility = View.INVISIBLE in <lambda>()
469 val mockLockscreenSmartspaceView = mock(View::class.java) in <lambda>() constant
470 whenever(mockLockscreenSmartspaceView.visibility).thenReturn(View.GONE) in <lambda>()
[all …]