You are here

public function EntityTypeTest::testHasKey in Drupal 8

Same name and namespace in other branches
  1. 9 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()

Tests the hasKey() method.

@dataProvider providerTestGetKeys

File

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

Class

EntityTypeTest
@coversDefaultClass \Drupal\Core\Entity\EntityType @group Entity

Namespace

Drupal\Tests\Core\Entity

Code

public function testHasKey($entity_keys, $expected) {
  $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
    ->assertSame(FALSE, $entity_type
    ->hasKey('bananas'));
}