Ejemplo n.º 1
0
 public function testGetSuit()
 {
     $this->assertEquals('S', $this->card->getSuit());
 }
Ejemplo n.º 2
0
 public function testCanBeNegated()
 {
     $card = new Card(SPADES, KING);
     $card->getSuit();
     $card->getValue();
 }