PluginIdTest.php

Same filename in this branch
  1. 11.x core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php
Same filename in other branches
  1. 9 core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php
  2. 8.9.x core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php
  3. 10 core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php
  4. 10 core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginIdTest.php

Namespace

Drupal\Tests\Component\Plugin\Attribute

File

core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginIdTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Component\Plugin\Attribute;

use Drupal\Component\Plugin\Attribute\PluginID;
use PHPUnit\Framework\TestCase;

/**
 * @coversDefaultClass \Drupal\Component\Plugin\Attribute\PluginID
 * @group Attribute
 */
class PluginIdTest extends TestCase {
    
    /**
     * @covers ::get
     */
    public function testGet() : void {
        // Assert plugin starts with only an ID.
        $plugin = new PluginID(id: 'test');
        // Plugin's always have a class set by discovery.
        $plugin->setClass('bar');
        $this->assertEquals([
            'id' => 'test',
            'class' => 'bar',
            'provider' => NULL,
        ], $plugin->get());
        // Set values and ensure we can retrieve them.
        $plugin->setClass('bar2');
        $plugin->setProvider('baz');
        $this->assertEquals([
            'id' => 'test',
            'class' => 'bar2',
            'provider' => 'baz',
        ], $plugin->get());
    }

}

Classes

Title Deprecated Summary
PluginIdTest @coversDefaultClass \Drupal\Component\Plugin\Attribute\PluginID @group Attribute

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.