Ejemplo n.º 1
0
        public void GeneratePokerHands()
        {
            var hands = HandGenerator.GenerateHands();

            Assert.AreEqual(expected: 2, actual: hands.ToList().Count);
        }
Ejemplo n.º 2
0
 public static void Main(string[] args)
 {
     Console.WriteLine(HandEvaluator.Evalutate(HandGenerator.GenerateHands()));
     Console.ReadLine();
 }