You are here

public function EntityEventTest::testEntityDeleteEvent in Hook Event Dispatcher 8.2

Same name and namespace in other branches
  1. 3.x modules/core_event_dispatcher/tests/src/Unit/Entity/EntityEventTest.php \Drupal\Tests\core_event_dispatcher\Unit\Entity\EntityEventTest::testEntityDeleteEvent()

Test EntityDeleteEvent.

File

modules/core_event_dispatcher/tests/src/Unit/Entity/EntityEventTest.php, line 62

Class

EntityEventTest
Class EntityEventTest.

Namespace

Drupal\Tests\core_event_dispatcher\Unit\Entity

Code

public function testEntityDeleteEvent() : void {
  $entity = $this
    ->createMock(EntityInterface::class);
  core_event_dispatcher_entity_delete($entity);

  /** @var \Drupal\core_event_dispatcher\Event\Entity\EntityDeleteEvent $event */
  $event = $this->manager
    ->getRegisteredEvent(HookEventDispatcherInterface::ENTITY_DELETE);
  self::assertSame($entity, $event
    ->getEntity());
}