function EntityTypeTest::setUpEntityType
Same name in this branch
- 11.x core/tests/Drupal/KernelTests/Core/Entity/EntityTypeTest.php \Drupal\KernelTests\Core\Entity\EntityTypeTest::setUpEntityType()
Same name in other branches
- 9 core/tests/Drupal/KernelTests/Core/Entity/EntityTypeTest.php \Drupal\KernelTests\Core\Entity\EntityTypeTest::setUpEntityType()
- 9 core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php \Drupal\Tests\Core\Entity\EntityTypeTest::setUpEntityType()
- 8.9.x core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php \Drupal\Tests\Core\Entity\EntityTypeTest::setUpEntityType()
- 10 core/tests/Drupal/KernelTests/Core/Entity/EntityTypeTest.php \Drupal\KernelTests\Core\Entity\EntityTypeTest::setUpEntityType()
- 10 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
32 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.
File
-
core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityTypeTest.php, line 28
Class
- EntityTypeTest
- @coversDefaultClass \Drupal\Core\Entity\EntityType @group Entity
Namespace
Drupal\Tests\Core\EntityCode
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.