You are here

public function EntityTypeBaseFieldTest::setUp in Hook Event Dispatcher 3.x

Same name and namespace in other branches
  1. 8.2 modules/core_event_dispatcher/tests/src/Unit/Entity/EntityTypeBaseFieldTest.php \Drupal\Tests\core_event_dispatcher\Unit\Entity\EntityTypeBaseFieldTest::setUp()

File

modules/core_event_dispatcher/tests/src/Unit/Entity/EntityTypeBaseFieldTest.php, line 31

Class

EntityTypeBaseFieldTest
Class EntityTypeTest.

Namespace

Drupal\Tests\core_event_dispatcher\Unit\Entity

Code

public function setUp() : void {
  $builder = new ContainerBuilder();
  $this->manager = new HookEventDispatcherManagerSpy();
  $builder
    ->set('hook_event_dispatcher.manager', $this->manager);
  $builder
    ->compile();
  Drupal::setContainer($builder);
}