/**
  * @param string $full
  * @dataProvider possibleIdentifierTypesProvider
  */
 public function testPossibleIdentifierTypes($full)
 {
     $type = new IdentifierType($full);
     $this->assertSame($full, $type->getName());
 }