Пример #1
0
        public void JustSomeHands(string hand, int[] expected)
        {
            var parser = new ShorthandParser(hand);
            var c      = new HandCalculator(parser);

            var actual = c.GetUkeIreFor13();

            Assert.Equal(expected, actual);
        }