public void When__UserStore_Set_Password_Hash__Expect__User_Param_Null_Exception() { Assert.ThrowsAsync(typeof(ArgumentNullException), async() => { await _userStore.SetPasswordHashAsync(null, "").ConfigureAwait(false); }, "Exception not thrown"); }