public function RevisionFieldTest::createTestEntity in Multiversion 8.2
1 call to RevisionFieldTest::createTestEntity()
File
- src/
Tests/ RevisionFieldTest.php, line 83
Class
- RevisionFieldTest
- Test the creation and operation of the Revision field.
Namespace
Drupal\multiversion\TestsCode
public function createTestEntity(EntityStorageInterface $storage, array $values) {
switch ($storage
->getEntityTypeId()) {
case 'block_content':
$values['info'] = $this
->randomMachineName();
break;
}
return $storage
->create($values);
}