You are here

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\Cron

Code

public function testCronEvent() {
  hook_event_dispatcher_cron();
  $event = $this->manager
    ->getRegisteredEvent(HookEventDispatcherInterface::CRON);
  self::assertInstanceOf(CronEvent::class, $event);
}