protected function HierarchyNestedSetRevisionIntegrationTest::doCreateTestEntity in Entity Reference Hierarchy 8.2
Same name and namespace in other branches
- 3.x tests/src/Kernel/HierarchyNestedSetRevisionIntegrationTest.php \Drupal\Tests\entity_hierarchy\Kernel\HierarchyNestedSetRevisionIntegrationTest::doCreateTestEntity()
Creates the test entity.
Parameters
array $values: Entity values.
Return value
\Drupal\Core\Entity\EntityInterface Created entity.
Overrides EntityHierarchyTestTrait::doCreateTestEntity
File
- tests/
src/ Kernel/ HierarchyNestedSetRevisionIntegrationTest.php, line 39
Class
- HierarchyNestedSetRevisionIntegrationTest
- Tests integration with entity_hierarchy and a revisionable entity.
Namespace
Drupal\Tests\entity_hierarchy\KernelCode
protected function doCreateTestEntity(array $values) {
// We use a different entity type here.
$entity = EntityTestRev::create($values);
return $entity;
}