Braintree.Tests.Integration.PaymentMethodNonceTest.Find_ExposesNullThreeDSecureInfoIfBlank C# (CSharp) Method

Find_ExposesNullThreeDSecureInfoIfBlank() private method

private Find_ExposesNullThreeDSecureInfoIfBlank ( ) : void
return void
        public void Find_ExposesNullThreeDSecureInfoIfBlank()
        {
            string nonce = TestHelper.GenerateUnlockedNonce(gateway);

            PaymentMethodNonce foundNonce = gateway.PaymentMethodNonce.Find(nonce);

            Assert.IsNull(foundNonce.ThreeDSecureInfo);
        }