protected function EditorConfigEntityUnitTest::setUp in Drupal 10
Same name and namespace in other branches
- 8 core/modules/editor/tests/src/Unit/EditorConfigEntityUnitTest.php \Drupal\Tests\editor\Unit\EditorConfigEntityUnitTest::setUp()
- 9 core/modules/editor/tests/src/Unit/EditorConfigEntityUnitTest.php \Drupal\Tests\editor\Unit\EditorConfigEntityUnitTest::setUp()
File
- core/
modules/ editor/ tests/ src/ Unit/ EditorConfigEntityUnitTest.php, line 61
Class
- EditorConfigEntityUnitTest
- @coversDefaultClass \Drupal\editor\Entity\Editor @group editor
Namespace
Drupal\Tests\editor\UnitCode
protected function setUp() : void {
$this->editorId = $this
->randomMachineName();
$this->entityTypeId = $this
->randomMachineName();
$this->entityType = $this
->createMock('\\Drupal\\Core\\Entity\\EntityTypeInterface');
$this->entityType
->expects($this
->any())
->method('getProvider')
->will($this
->returnValue('editor'));
$this->entityTypeManager = $this
->createMock(EntityTypeManagerInterface::class);
$this->entityTypeManager
->expects($this
->any())
->method('getDefinition')
->with($this->entityTypeId)
->will($this
->returnValue($this->entityType));
$this->uuid = $this
->createMock('\\Drupal\\Component\\Uuid\\UuidInterface');
$this->editorPluginManager = $this
->getMockBuilder('Drupal\\editor\\Plugin\\EditorManager')
->disableOriginalConstructor()
->getMock();
$container = new ContainerBuilder();
$container
->set('entity_type.manager', $this->entityTypeManager);
$container
->set('uuid', $this->uuid);
$container
->set('plugin.manager.editor', $this->editorPluginManager);
\Drupal::setContainer($container);
}