function 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

33 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[[api-linebreak]]
EntityTypeTest::testGet in core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php
@covers ::get[[api-linebreak]]
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 26

Class

EntityTypeTest
@coversDefaultClass \Drupal\Core\Entity\EntityType[[api-linebreak]] @group Entity

Namespace

Drupal\Tests\Core\Entity

Code

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

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