Example #1
0
        public void GetHandValuesOfPlayer_OnlyNumbers()
        {
            List <string> input = new List <string>()
            {
                "2H", "3D", "5S", "9C", "8D"
            };
            List <int> output = poker.GetHandValues(input);

            Assert.AreEqual(new List <int> {
                2, 3, 5, 9, 8
            }, output);
        }