public async Task Test_add_user_modify_twofactor_enabled_delete() { var dao = Global.TenantDao; await dao.EstablishConnectionAsync(); var guidId = Guid.NewGuid(); var userStore = new CassandraUserStore(); string userName = Guid.NewGuid().ToString(); var user = new CassandraUser() { Email = userName, UserName = userName, EmailConfirmed = false, PhoneNumberConfirmed = false, PhoneNumber = "310.383.1111", LockoutEnabled = false, PasswordHash = "1234", SecurityStamp = "1234", TwoFactorEnabled = false }; await userStore.CreateAsync(user); var foundUser = await userStore.FindByEmailAsync(userName); Assert.IsNotNull(foundUser); Assert.IsFalse(await userStore.GetTwoFactorEnabledAsync(foundUser)); await userStore.SetTwoFactorEnabledAsync(foundUser, true); await userStore.UpdateAsync(foundUser); foundUser = await userStore.FindByEmailAsync(userName); Assert.IsNotNull(foundUser); Assert.IsTrue(await userStore.GetTwoFactorEnabledAsync(foundUser)); await userStore.DeleteAsync(foundUser); foundUser = await userStore.FindByEmailAsync(userName); Assert.IsNull(foundUser); }