コード例 #1
0
ファイル: CollectionTest.php プロジェクト: sigma-z/dive
 public function testOffsetGetWithWithIntegerIndex()
 {
     $array = array(array('name' => 'Item I'), array('name' => 'Item II'), array('name' => 'Item III'));
     $this->coll->setItems($array);
     $this->assertEquals('Item III', $this->coll[2]['name']);
 }