コード例 #1
0
        public void NoApiResponse()
        {
            var result = ValidationResult.ApiNoResponse("123");

            Assert.IsFalse(result.PaymentSuccessful);
            Assert.IsFalse(result.Supported);
            Assert.IsFalse(result.Valid);
            Assert.AreEqual(string.Empty, result.Card);
            Assert.AreEqual("API no response", result.ErrorMessage);
        }