7 references to VerifyException
Microsoft.AspNetCore.Identity.Test (7)
UserManagerTest.cs (7)
1275await VerifyException<NotSupportedException>(async () => await manager.GetAuthenticationTokenAsync(null, null, null), error); 1276await VerifyException<NotSupportedException>(async () => await manager.SetAuthenticationTokenAsync(null, null, null, null), error); 1277await VerifyException<NotSupportedException>(async () => await manager.RemoveAuthenticationTokenAsync(null, null, null), error); 1286await VerifyException<NotSupportedException>(async () => await manager.GetAuthenticatorKeyAsync(null), error); 1287await VerifyException<NotSupportedException>(async () => await manager.ResetAuthenticatorKeyAsync(null), error); 1296await VerifyException<NotSupportedException>(async () => await manager.RedeemTwoFactorRecoveryCodeAsync(null, null), error); 1297await VerifyException<NotSupportedException>(async () => await manager.GenerateNewTwoFactorRecoveryCodesAsync(null, 10), error);