public function CronEventTest::testCronEvent in Hook Event Dispatcher 8
Test the cron event.
File
- tests/
src/ Unit/ Cron/ CronEventTest.php, line 41
Class
- CronEventTest
- Class CronEventTest.
Namespace
Drupal\Tests\hook_event_dispatcher\Unit\CronCode
public function testCronEvent() {
hook_event_dispatcher_cron();
$event = $this->manager
->getRegisteredEvent(HookEventDispatcherInterface::CRON);
self::assertInstanceOf(CronEvent::class, $event);
}