예제 #1
0
 public function testAddAllAt()
 {
     // Remove the following lines when you implement this test.
     $list = new ArrayList();
     $list->add(111);
     $list->add(222);
     $list->add(333);
     $this->object->addAllAt(4, $list);
 }