Пример #1
0
        public void CombinationTestWhenRoyalFLush()
        {
            Combination comb = new Combination();
            List <Card> test = new List <Card>();

            test.Add(new Card('H', 'X', 9));
            test.Add(new Card('H', 'J', 10));
            test.Add(new Card('H', 'Q', 11));
            test.Add(new Card('H', 'K', 12));
            test.Add(new Card('H', '1', 13));

            List <Card> test2 = new List <Card>();

            test2.Add(new Card('H', '8', 7));
            test2.Add(new Card('S', '2', 1));

            int res = comb.CheckRoyalFlush(test, test2);

            Assert.AreNotEqual(0, res);
        }