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