public function testOffsetUnset()
 {
     $this->coll->offsetUnset(0);
     $this->assertSame($this->coll->count(), 0);
     $this->assertFalse(isset($this->coll->getObjects()[0]));
 }