Пример #1
0
 public function testCopyTo()
 {
     $arr = array();
     $this->_List->copyTo($arr);
     $this->assertCount(5, $arr);
     $this->_List->copyTo($arr, 2);
     $this->assertCount(3, $arr);
 }