You are here

NotifyReminderEventTest.php in Ubercart 8.4

File

uc_role/tests/src/Unit/Integration/Event/NotifyReminderEventTest.php
View source
<?php

namespace Drupal\Tests\uc_role\Unit\Integration\Event;


/**
 * Checks that the event "uc_role_notify_reminder" is correctly defined.
 *
 * @coversDefaultClass \Drupal\uc_role\Event\NotifyReminderEvent
 *
 * @group ubercart
 *
 * @requires module rules
 */
class NotifyReminderEventTest extends RoleEventTestBase {

  /**
   * Tests the event metadata.
   */
  public function testNotifyReminderEvent() {

    // Verify our event is discoverable.
    $event = $this->eventManager
      ->createInstance('uc_role_notify_reminder');
    $account_context_definition = $event
      ->getContextDefinition('account');
    $this
      ->assertSame('entity:user', $account_context_definition
      ->getDataType());
    $this
      ->assertSame('User', $account_context_definition
      ->getLabel());
    $role_context_definition = $event
      ->getContextDefinition('expiration');
    $this
      ->assertSame('array', $role_context_definition
      ->getDataType());
    $this
      ->assertSame('Role expiration', $role_context_definition
      ->getLabel());
  }

}

Classes

Namesort descending Description
NotifyReminderEventTest Checks that the event "uc_role_notify_reminder" is correctly defined.