Example #1
0
 public function test_extend()
 {
     $collection = new Collection([1, 2]);
     $collection->extend(new Collection([1, 2]));
     $this->assertEquals([1, 2, 1, 2], $collection->getItems());
 }