Exemplo n.º 1
0
 public void GenerateAndStoreOtp_Should_Return6DigitNumericOtpAndNotNullToken_When_NoOptionsArePassed()
 {
     (string testOtp, string token) = _otpProvider.GenerateAndStoreOtp();
     Assert.IsNotNull(token);
     foreach (var test in testOtp.ToCharArray())
     {
         Assert.IsTrue(char.IsDigit(test));
     }
 }
Exemplo n.º 2
0
 public void GenerateAndStoreOtp_Should_ThrowArgumetNullException_When_NoOtpStorageIsPassed()
 {
     _otpProvider = new Otp();
     (string testOtp, string token) = _otpProvider.GenerateAndStoreOtp();
 }