Exemple #1
0
 public function testGetCardsRemaining()
 {
     $this->assertEquals(104, $this->shoe->getCardsRemaining());
     $this->shoe->dealCard();
     $this->assertEquals(103, $this->shoe->getCardsRemaining());
     $this->shoe->dealCard();
     $this->assertEquals(102, $this->shoe->getCardsRemaining());
 }