Exemplo n.º 1
0
 public void When__UserStore_Set_TwoFactor_Enabled__Expect__User_Param_Null_Exception()
 {
     Assert.ThrowsAsync(typeof(ArgumentNullException), async() =>
     {
         await _userStore.SetTwoFactorEnabledAsync(null, false).ConfigureAwait(false);
     }, "Exception not thrown");
 }