public void PegPointCalculator_Constructor()
        {
            Hand hand = new Hand();

            hand.Cards.Add(new Card(CardSuit.Club, CardFace.Ace));

            PegPointCalculator pointCalc = new PegPointCalculator(hand, 0, false);
        }
        public void PegPointCalculator_Constructor_NullCards()
        {
            Hand hand = new Hand();

            PegPointCalculator pointCalc = new PegPointCalculator(hand, 0, false);
        }
 public void PegPointCalculator_Constructor_NullHand()
 {
     PegPointCalculator pointCalc = new PegPointCalculator(null, 0, false);
 }