public void PlayEntirePyramid() { for (int i = 27; i >= 0; i--) { cardHolder.PyramidCards[i].Played = true; cardHolder.RecalculateCardsTurned(); } Assert.True(cardHolder.PyramidCards.All(x => x.Played && !x.Hidden)); }