Exemplo n.º 1
0
 public void TestCreateCardWithPowerGreaterThanAceThrowsException()
 {
     var card = new Card(null, 15, Suit.Clubs);
 }
Exemplo n.º 2
0
 public void TestCreateCardWithNegativePowerThrowsException()
 {
     var card = new Card(null, -1, Suit.Clubs);
 }