You are here

public function EntityTypeTest::testId in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 282
Contains \Drupal\Tests\Core\Entity\EntityTypeTest.

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(array(
    'id' => $id,
  ));
  $this
    ->assertEquals($id, $entity_type
    ->id());
}