EntityViewTest.php

Same filename in this branch
  1. 8.x-3.x tests/src/Kernel/EntityViewTest.php

Namespace

Drupal\Tests\rules\Unit\Integration\Event

File

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

View source
<?php

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


/**
 * Checks that the entity view events are defined.
 *
 * @coversDefaultClass \Drupal\rules\Plugin\RulesEvent\EntityViewDeriver
 *
 * @group RulesEvent
 */
class EntityViewTest extends EventTestBase {
    
    /**
     * Tests the event metadata.
     */
    public function testEventMetadata() {
        $plugin_definition = $this->eventManager
            ->getDefinition('rules_entity_view:test');
        $this->assertSame('Entity of type test is viewed', (string) $plugin_definition['label']);
        $context_definition = $plugin_definition['context_definitions']['test'];
        $this->assertSame('entity:test', $context_definition->getDataType());
        $this->assertSame('Test', $context_definition->getLabel());
    }

}

Classes

Title Deprecated Summary
EntityViewTest Checks that the entity view events are defined.