예제 #1
0
 public void IsOtpMatched_Should_ThrowArgumentException_WhenOtpIsNull()
 {
     _otpProvider.IsOtpMached(null, "sdasfasdf");
 }
예제 #2
0
 public void IsOtpMatched_Should_ThrowArgumentNullException_When_NoOtpStorageIsPassed()
 {
     _otpProvider = new Otp();
     _otpProvider.IsOtpMached("123", "sdasfasdf");
 }