You are here

protected function EntityTypeTest::setUpEntityType 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::setUpEntityType()

Sets up an EntityType object for a given set of values.

Parameters

array $definition: An array of values to use for the EntityType.

Return value

\Drupal\Core\Entity\EntityTypeInterface

37 calls to EntityTypeTest::setUpEntityType()
EntityTypeTest::testConstraintMethods in core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php
Tests the constraint methods.
EntityTypeTest::testEntityClassImplements in core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php
@covers ::entityClassImplements
EntityTypeTest::testGet in core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php
@covers ::get
EntityTypeTest::testGetAccessControlClass in core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php
Tests the getAccessControlClass() method.
EntityTypeTest::testGetBundleLabel in core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php
Tests the ::getBundleLabel() method.

... See full list

File

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

Class

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

Namespace

Drupal\Tests\Core\Entity

Code

protected function setUpEntityType($definition) {
  $definition += [
    'id' => 'example_entity_type',
  ];
  return new EntityType($definition);
}