Base:
method
AddClaimsAsync
Microsoft.AspNetCore.Identity.UserStoreBase<TUser, TKey, TUserClaim, TUserLogin, TUserToken>.AddClaimsAsync(TUser, System.Collections.Generic.IEnumerable<System.Security.Claims.Claim>, System.Threading.CancellationToken)
3 references to AddClaimsAsync
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (3)
UserStoreTest.cs (3)
68
await Assert.ThrowsAsync<ObjectDisposedException>(async () => await store.
AddClaimsAsync
(null, null));
107
await Assert.ThrowsAsync<ArgumentNullException>("user", async () => await store.
AddClaimsAsync
(null, null));
130
async () => await store.
AddClaimsAsync
(new IdentityUser("fake"), null));