Braintree.Tests.Integration.PaymentMethodNonceTest.Find_ExposesNullThreeDSecureInfoIfBlank C# (CSharp) 메소드

Find_ExposesNullThreeDSecureInfoIfBlank() 개인적인 메소드

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

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

            Assert.IsNull(foundNonce.ThreeDSecureInfo);
        }