function EntityTypeTest::testHasKey

Tests the hasKey() method.

Attributes

#[DataProvider('providerTestGetKeys')]

File

core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php, line 91

Class

EntityTypeTest
Tests Drupal\Core\Entity\EntityType.

Namespace

Drupal\Tests\Core\Entity

Code

public function testHasKey($entity_keys, $expected) : void {
  $entity_type = $this->setUpEntityType([
    'entity_keys' => $entity_keys,
  ]);
  $this->assertSame(!empty($expected['bundle']), $entity_type->hasKey('bundle'));
  $this->assertSame(!empty($expected['id']), $entity_type->hasKey('id'));
  $this->assertFalse($entity_type->hasKey('bananas'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.