Пример #1
0
        public void CardFindAndModify_Exists()
        {
            // Modify the colors of the card
            testCardExists.Colors = new List <string>()
            {
                "Black", "White"
            };

            var actual = mtgStore.CardFindAndModify(testCardExists).Result;

            Assert.NotNull(actual);
            Assert.True(actual.Colors.Contains("White"));
        }