public function testRemoveTypeByIndexMultiple()
 {
     $this->assertSame(0, $this->index->countTypes());
     $this->index->addType($this->type);
     $this->index->addType($this->type);
     $this->index->addType($this->type);
     $this->assertSame(3, $this->index->countTypes());
     $this->index->removeTypeByIndex(0);
     $this->index->removeTypeByIndex(1);
     $this->assertSame(1, $this->index->countTypes());
 }