function EntityTypeTest::testId

Same name in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php \Drupal\Tests\Core\Entity\EntityTypeTest::testId()
  2. 10 core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php \Drupal\Tests\Core\Entity\EntityTypeTest::testId()
  3. 11.x core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php \Drupal\Tests\Core\Entity\EntityTypeTest::testId()

@covers ::id

File

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

Class

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

Namespace

Drupal\Tests\Core\Entity

Code

public function testId() {
    $id = $this->randomMachineName(32);
    $entity_type = $this->setUpEntityType([
        'id' => $id,
    ]);
    $this->assertEquals($id, $entity_type->id());
}

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