public function EntityEventTest::testEntityDeleteEvent in Hook Event Dispatcher 3.x
Same name and namespace in other branches
- 8.2 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\EntityCode
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());
}