public function testGetAddTypeMultiple()
 {
     $this->assertTrue(is_array($this->index->getTypes()));
     $this->assertEmpty($this->index->getTypes());
     $this->index->addType($this->type);
     $this->index->addType($this->type);
     $this->index->addType($this->type);
     $this->assertSame([$this->type, $this->type, $this->type], $this->index->getTypes());
 }