Searched refs:authMethod (Results 1 – 9 of 9) sorted by relevance
67 authMethodsToTest().forEach { authMethod ->68 utils.authenticationRepository.setAuthenticationMethod(authMethod)72 if (authMethod.isSecure) {78 "View-model unexpectedly non-null for auth method $authMethod"94 collectLastValue(underTest.authMethod)96 authMethodsToTest().forEach { authMethod ->97 utils.authenticationRepository.setAuthenticationMethod(authMethod)98 authMethodViewModel?.let { seen[authMethod] = it }102 authMethodsToTest().forEach { authMethod ->103 utils.authenticationRepository.setAuthenticationMethod(authMethod)[all …]
353 authMethod: DomainLayerAuthenticationMethodModel,358 authenticationRepository.setLockscreenEnabled(authMethod !is AuthenticationMethodModel.None)359 authenticationRepository.setAuthenticationMethod(authMethod.toDataLayer())360 if (!authMethod.isSecure) {448 val authMethod = authenticationInteractor.getAuthenticationMethod() regex449 assertWithMessage("The authentication method of $authMethod is not secure, cannot lock!")450 .that(authMethod.isSecure)485 val authMethodViewModel by collectLastValue(bouncerViewModel.authMethod)
86 val authMethod by collectLastValue(underTest.authenticationMethod) regex89 assertThat(authMethod).isEqualTo(AuthenticationMethodModel.Pin)93 assertThat(authMethod).isEqualTo(AuthenticationMethodModel.Pattern)98 assertThat(authMethod).isEqualTo(AuthenticationMethodModel.None)
183 private fun promptMessage(authMethod: AuthenticationMethodModel): String {184 return when (authMethod) {195 private fun errorMessage(authMethod: AuthenticationMethodModel): String {196 return when (authMethod) {
62 val authMethod by collectLastValue(underTest.authenticationMethod) regex64 assertThat(authMethod).isEqualTo(DomainLayerAuthenticationMethodModel.Pin)72 assertThat(authMethod).isEqualTo(DomainLayerAuthenticationMethodModel.Password)80 val authMethod by collectLastValue(underTest.authenticationMethod) regex88 assertThat(authMethod).isEqualTo(DomainLayerAuthenticationMethodModel.Swipe)96 val authMethod by collectLastValue(underTest.authenticationMethod) regex104 assertThat(authMethod).isEqualTo(DomainLayerAuthenticationMethodModel.None)
180 val authMethod = authenticationInteractor.getAuthenticationMethod() regex183 authMethod == AuthenticationMethodModel.None -> {191 authMethod.isSecure && isUnlocked -> {
274 val authMethod = getAuthenticationMethod() regex275 val credential = authMethod.createCredential(input) ?: return null
88 val authMethod: StateFlow<AuthMethodBouncerViewModel?> =
105 val authMethodViewModel: AuthMethodBouncerViewModel? by viewModel.authMethod.collectAsState()