Пример #1
0
        public void HasGroupsSizeXTest6()
        {
            XofAKindDeck deck = new XofAKindDeck();
            bool         res  = deck.HasGroupsSizeX(new int[] { 1, 1, 1, 1, 2, 2, 2, 2, 2, 2 });

            Assert.IsTrue(res);
        }
Пример #2
0
        public void HasGroupsSizeXTest3()
        {
            XofAKindDeck deck = new XofAKindDeck();
            bool         res  = deck.HasGroupsSizeX(new int[] { 1 });

            Assert.IsFalse(res);
        }