コード例 #1
0
ファイル: HandTest.php プロジェクト: bmcveigh/cards_php
 public function testCanBeNegated()
 {
     $hand = new Hand();
     for ($i = 0; $i < 13; $i++) {
         $hand->addCard($deck->dealCard());
     }
     print $hand->getHandCount();
 }