示例#1
0
        public void SortAllCards()
        {
            IList<ICard> allCards = GenerateAllCards();
            Hand handOfAllCards = new Hand(allCards);

            handOfAllCards.Sort();
            bool result = IsSorted(handOfAllCards);

            Assert.IsTrue(result);
        }