9 references to UpdateSecurityStampAsync
Microsoft.AspNetCore.Identity.FunctionalTests (1)
MapIdentityApiTests.cs (1)
391await userManager.UpdateSecurityStampAsync(user);
Microsoft.AspNetCore.Identity.InMemory.Test (1)
FunctionalTest.cs (1)
332var result = await userManager.UpdateSecurityStampAsync(user);
Microsoft.AspNetCore.Identity.Specification.Tests (4)
UserManagerSpecificationTests.cs (4)
888IdentityResultAssert.IsSuccess(await manager.UpdateSecurityStampAsync(user)); 1651IdentityResultAssert.IsSuccess(await manager.UpdateSecurityStampAsync(user)); 1655IdentityResultAssert.IsSuccess(await manager.UpdateSecurityStampAsync(user)); 1853IdentityResultAssert.IsSuccess(await manager.UpdateSecurityStampAsync(user));
Microsoft.AspNetCore.Identity.Test (3)
UserManagerTest.cs (3)
739await Assert.ThrowsAsync<NotSupportedException>(() => manager.UpdateSecurityStampAsync(null)); 1087async () => await manager.UpdateSecurityStampAsync(null)); 1176await Assert.ThrowsAsync<ObjectDisposedException>(() => manager.UpdateSecurityStampAsync(null));