コード例 #1
0
ファイル: ArrayListTest.php プロジェクト: dazarobbo/cola
 public function testPopBack()
 {
     $value = $this->_List->popBack();
     $this->assertTrue(\is_object($value));
     $this->assertCount(4, $this->_List);
     $this->assertTrue(\is_array($this->_List->back()));
 }