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;
class NotifyReminderEventTest extends RoleEventTestBase {
public function testNotifyReminderEvent() {
$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());
}
}