public function testOffsetUnset()
 {
     $this->assertNull($this->arrayCollection->offsetUnset(3000));
     $removedElement = $this->data[0];
     unset($this->data[0]);
     $this->assertEquals($removedElement, $this->arrayCollection->remove(0));
 }