コード例 #1
0
ファイル: LuckyBoxTest.php プロジェクト: cloned/luckybox
 public function testIsEmpty()
 {
     $box = new LuckyBox();
     $this->assertTrue($box->isEmpty());
     $box->add(new IdCard());
     $this->assertFalse($box->isEmpty());
 }