Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/
H A DAuthSessionTest.java406 testInvokesCancel(session -> session.onCancelAuthSession(false /* force */)); in testCancelAuthentication_whenStateAuthCalled_invokesCancel()
412 testInvokesCancel(session -> session.onCancelAuthSession(true /* force */)); in testCancelAuthentication_whenStateAuthForcedCalled_invokesCancel()
417 testInvokesCancel(session -> session.onDialogDismissed(DISMISSED_REASON_NEGATIVE, null)); in testCancelAuthentication_whenDialogDismissed()
584 private void testInvokesCancel(Consumer<AuthSession> sessionConsumer) throws RemoteException { in testInvokesCancel() method in AuthSessionTest