Beispiel #1
0
 public void When__UserStore_Set_PhoneNumber__Expect__User_Param_Null_Exception()
 {
     Assert.ThrowsAsync(typeof(ArgumentNullException), async() =>
     {
         await _userStore.SetPhoneNumberAsync(null, "").ConfigureAwait(false);
     }, "Exception not thrown");
 }