You are here

public function EntityOperationsTest::setUp in Hook Event Dispatcher 8

Overrides UnitTestCase::setUp

File

tests/src/Unit/Entity/EntityOperationsTest.php, line 32

Class

EntityOperationsTest
Class EntityOperationsTest.

Namespace

Drupal\Tests\hook_event_dispatcher\Unit\Entity

Code

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