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