public function EntityEventTest::testEntityCreateEvent in Hook Event Dispatcher 8.2
Same name and namespace in other branches
- 3.x modules/core_event_dispatcher/tests/src/Unit/Entity/EntityEventTest.php \Drupal\Tests\core_event_dispatcher\Unit\Entity\EntityEventTest::testEntityCreateEvent()
Test EntityCreateEvent.
File
- modules/
core_event_dispatcher/ tests/ src/ Unit/ Entity/ EntityEventTest.php, line 49
Class
- EntityEventTest
- Class EntityEventTest.
Namespace
Drupal\Tests\core_event_dispatcher\Unit\EntityCode
public function testEntityCreateEvent() : void {
$entity = $this
->createMock(EntityInterface::class);
core_event_dispatcher_entity_create($entity);
/** @var \Drupal\core_event_dispatcher\Event\Entity\EntityCreateEvent $event */
$event = $this->manager
->getRegisteredEvent(HookEventDispatcherInterface::ENTITY_CREATE);
self::assertSame($entity, $event
->getEntity());
}