public function testInsertRange() { $coll = new ArrayList(['John', 'Paul', 'George', 'Ringo']); $this->_List->insertRange(1, $coll); $this->assertEquals('hello', $this->_List[0]); $this->assertEquals('Paul', $this->_List[2]); }