public void IsStraight_StraightInMiddle_Yes()
        {
            var setup = new Setup(3, 3, 5, 6, 7, 7, 8, 9, 11, 11);

            var actual = CurrentHandService.IsStraight(setup.cards);

            Assert.That(actual, Is.True);
        }
        public void IsStraight_2To5AndGap_No()
        {
            var setup = new Setup(2, 3, 4, 5, 8);

            var actual = CurrentHandService.IsStraight(setup.cards);

            Assert.That(actual, Is.False);
        }
        public void IsStraight_SingleCard_No()
        {
            var setup = new Setup(5);

            var actual = CurrentHandService.IsStraight(setup.cards);

            Assert.That(actual, Is.False);
        }
        public void IsStraight_AceTo5_Yes()
        {
            var setup = new Setup(2, 3, 4, 5, Ace);

            var actual = CurrentHandService.IsStraight(setup.cards);

            Assert.That(actual, Is.True);
        }