public function EntityViewEventTest::setUp in Hook Event Dispatcher 3.x
Same name and namespace in other branches
- 8.2 modules/core_event_dispatcher/tests/src/Unit/Entity/EntityViewEventTest.php \Drupal\Tests\core_event_dispatcher\Unit\Entity\EntityViewEventTest::setUp()
File
- modules/
core_event_dispatcher/ tests/ src/ Unit/ Entity/ EntityViewEventTest.php, line 35
Class
- EntityViewEventTest
- Class EntityViewEventTest.
Namespace
Drupal\Tests\core_event_dispatcher\Unit\EntityCode
public function setUp() : void {
$builder = new ContainerBuilder();
$this->manager = new HookEventDispatcherManagerSpy();
$builder
->set('hook_event_dispatcher.manager', $this->manager);
$builder
->compile();
Drupal::setContainer($builder);
}