function EntityTypeTest::testHasKey

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php \Drupal\Tests\Core\Entity\EntityTypeTest::testHasKey()
  2. 10 core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php \Drupal\Tests\Core\Entity\EntityTypeTest::testHasKey()
  3. 9 core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php \Drupal\Tests\Core\Entity\EntityTypeTest::testHasKey()
  4. 8.9.x core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php \Drupal\Tests\Core\Entity\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(array $entity_keys, array $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.