Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardPinViewControllerTest.kt102 @Mock lateinit var passwordTextView: PasswordTextView variable in com.android.keyguard.KeyguardPinViewControllerTest
118 .thenReturn(passwordTextView) in setup()
127 `when`(passwordTextView.layoutParams).thenReturn(passwordTextViewLayoutParams) in setup()
232 `when`(passwordTextView.text).thenReturn("") in testOnViewAttached_withAutoPinConfirmationFailedPasswordAttemptsLessThan5()
238 verify(passwordTextView).setUsePinShapes(true) in testOnViewAttached_withAutoPinConfirmationFailedPasswordAttemptsLessThan5()
239 verify(passwordTextView).setIsPinHinting(true) in testOnViewAttached_withAutoPinConfirmationFailedPasswordAttemptsLessThan5()
249 `when`(passwordTextView.text).thenReturn("") in testOnViewAttached_withAutoPinConfirmationFailedPasswordAttemptsMoreThan5()
255 verify(passwordTextView).setUsePinShapes(true) in testOnViewAttached_withAutoPinConfirmationFailedPasswordAttemptsMoreThan5()
256 verify(passwordTextView).setIsPinHinting(false) in testOnViewAttached_withAutoPinConfirmationFailedPasswordAttemptsMoreThan5()
274 whenever(passwordTextView.text).thenReturn("000000") in onUserInput_autoConfirmation_attemptsUnlock()