public void IsOtpMatched_Should_ThrowArgumentException_WhenOtpIsNull() { _otpProvider.IsOtpMached(null, "sdasfasdf"); }
public void IsOtpMatched_Should_ThrowArgumentNullException_When_NoOtpStorageIsPassed() { _otpProvider = new Otp(); _otpProvider.IsOtpMached("123", "sdasfasdf"); }