You are here

public function BlockEventTest::setUp in Hook Event Dispatcher 8

Overrides UnitTestCase::setUp

File

tests/src/Unit/Block/BlockEventTest.php, line 30

Class

BlockEventTest
Class BlockEventTest.

Namespace

Drupal\Tests\hook_event_dispatcher\Unit\Block

Code

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