コード例 #1
0
        public void PegPointCalculator_Constructor()
        {
            Hand hand = new Hand();

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

            PegPointCalculator pointCalc = new PegPointCalculator(hand, 0, false);
        }
コード例 #2
0
        public void PegPointCalculator_Constructor_NullCards()
        {
            Hand hand = new Hand();

            PegPointCalculator pointCalc = new PegPointCalculator(hand, 0, false);
        }
コード例 #3
0
 public void PegPointCalculator_Constructor_NullHand()
 {
     PegPointCalculator pointCalc = new PegPointCalculator(null, 0, false);
 }