UserLogoutTest.php

Namespace

Drupal\Tests\rules\Unit\Integration\Event

File

tests/src/Unit/Integration/Event/UserLogoutTest.php

View source
<?php

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


/**
 * Checks that the event "rules_user_logout" is correctly defined.
 *
 * @group RulesEvent
 */
class UserLogoutTest extends EventTestBase {
    
    /**
     * Tests the event metadata.
     */
    public function testUserLogoutEvent() {
        $event = $this->eventManager
            ->createInstance('rules_user_logout');
        $user_context_definition = $event->getContextDefinition('account');
        $this->assertSame('entity:user', $user_context_definition->getDataType());
        $this->assertSame('Logged out user', $user_context_definition->getLabel());
    }

}

Classes

Title Deprecated Summary
UserLogoutTest Checks that the event "rules_user_logout" is correctly defined.