/**
  * @test
  * @group entity
  */
 public function the_entity_type_can_be_retrieved()
 {
     $entityType = EntityType::SP();
     $entity = new Entity(new EntityId('OpenConext'), $entityType);
     $this->assertTrue($entity->getEntityType()->equals($entityType));
 }