Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DLockIconViewControllerTest.java168 reset(mLockIconView); in testLockIcon_updateToUnlock()
190 reset(mLockIconView); in testLockIcon_clearsIconOnAod_whenUdfpsNotEnrolled()
196 verify(mLockIconView).clearIcon(); in testLockIcon_clearsIconOnAod_whenUdfpsNotEnrolled()
211 reset(mLockIconView); in testLockIcon_updateToAodLock_whenUdfpsEnrolled()
234 reset(mLockIconView); in testBurnInOffsetsUpdated_onDozeAmountChanged()
243 reset(mLockIconView); in testBurnInOffsetsUpdated_onDozeAmountChanged()
250 verify(mLockIconView).setTranslationY(0); in testBurnInOffsetsUpdated_onDozeAmountChanged()
266 reset(mLockIconView); in lockIconShows_afterUnlockStateChanges()
288 reset(mLockIconView); in lockIconAccessibility_notVisibleToUser()
311 reset(mLockIconView); in lockIconAccessibility_bouncerAnimatingAway()
[all …]
H A DLockIconViewControllerWithCoroutinesTest.kt56 reset(mLockIconView)
62 verify(mLockIconView).clearIcon()
78 reset(mLockIconView)
84 verify(mLockIconView).updateIcon(ICON_LOCK, true)
102 reset(mLockIconView)
111 reset(mLockIconView)
118 verify(mLockIconView).setTranslationY(0f)
119 verify(mLockIconView).setTranslationX(0f)
129 reset(mLockIconView)
138 reset(mLockIconView)
[all …]
H A DLockIconViewControllerBaseTest.java79 protected @Mock LockIconView mLockIconView; field in LockIconViewControllerBaseTest
153 mLockIconView, in setUp()
222 when(mLockIconView.getResources()).thenReturn(mResources); in setupLockIconViewMocks()
223 when(mLockIconView.getContext()).thenReturn(mContext); in setupLockIconViewMocks()
227 reset(mLockIconView); in resetLockIconView()
235 verify(mLockIconView, atLeast(1)).addOnAttachStateChangeListener(mAttachCaptor.capture()); in init()
236 mAttachCaptor.getValue().onViewAttachedToWindow(mLockIconView); in init()