Exemplo n.º 1
0
        public void GetHandOfBlackPlayer()
        {
            string        input  = "Black: 2H 3D 5S 9C KD White: 2C 3H 4S 8C AH";
            List <string> output = poker.GetHandOfBlackPlayer(input);

            Assert.AreEqual(new List <string> {
                "2H", "3D", "5S", "9C", "KD"
            }, output);
        }