BalancedSharp.Tests.Integration.CardApiTests.Create_Success C# (CSharp) Method

Create_Success() private method

private Create_Success ( ) : void
return void
        public void Create_Success()
        {
            var result = this.service.CurrentMarketplace.CreateCard(
                new Card("5105105105105100", 2020, 12));
            var item = result.Result;
            Assert.IsNotNull(item);
            Assert.IsNull(item.Account);
            Assert.IsNotNull(item.Brand);
            Assert.IsNotNull(item.CanDebit);
            Assert.IsNotNull(item.CardType);
            Assert.IsNotNull(item.CreatedOn);
            Assert.IsNotNull(item.ExpirationMonth);
            Assert.IsNotNull(item.ExpirationYear);
            Assert.IsNotNull(item.Hash);
            Assert.IsNotNull(item.Id);
            Assert.IsNotNull(item.IsValid);
            Assert.IsNotNull(item.LastFourDigits);
            Assert.IsNull(item.Name);
            Assert.IsNotNull(item.Uri);
        }