public function testReset()
 {
     $this->coll->reset();
     $this->assertSame($this->coll->count(), 0);
     // should also work on empty list
     $this->coll->reset();
     $this->assertSame($this->coll->count(), 0);
 }