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); }
public void HasGroupsSizeXTest3() { XofAKindDeck deck = new XofAKindDeck(); bool res = deck.HasGroupsSizeX(new int[] { 1 }); Assert.IsFalse(res); }