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