class PluginIdTest

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php \Drupal\Tests\Component\Annotation\PluginIdTest
  2. 10 core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php \Drupal\Tests\Component\Annotation\PluginIdTest
  3. 10 core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginIdTest.php \Drupal\Tests\Component\Plugin\Attribute\PluginIdTest
  4. 11.x core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php \Drupal\Tests\Component\Annotation\PluginIdTest
  5. 11.x core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginIdTest.php \Drupal\Tests\Component\Plugin\Attribute\PluginIdTest

@coversDefaultClass \Drupal\Component\Annotation\PluginId @group Annotation

Hierarchy

  • class \Drupal\Tests\Component\Annotation\PluginIdTest extends \PHPUnit\Framework\TestCase

Expanded class hierarchy of PluginIdTest

File

core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php, line 12

Namespace

Drupal\Tests\Component\Annotation
View source
class PluginIdTest extends TestCase {
    
    /**
     * @covers ::get
     */
    public function testGet() {
        // Assert plugin starts empty regardless of constructor.
        $plugin = new PluginID([
            'foo' => 'bar',
            'biz' => [
                'baz' => 'boom',
            ],
            'nestedAnnotation' => new PluginID([
                'foo' => 'bar',
            ]),
            'value' => 'biz',
        ]);
        $this->assertEquals([
            'id' => NULL,
            'class' => NULL,
            'provider' => NULL,
        ], $plugin->get());
        // Set values and ensure we can retrieve them.
        $plugin->value = 'foo';
        $plugin->setClass('bar');
        $plugin->setProvider('baz');
        $this->assertEquals([
            'id' => 'foo',
            'class' => 'bar',
            'provider' => 'baz',
        ], $plugin->get());
    }
    
    /**
     * @covers ::getId
     */
    public function testGetId() {
        $plugin = new PluginID([]);
        $plugin->value = 'example';
        $this->assertEquals('example', $plugin->getId());
    }

}

Members

Title Sort descending Modifiers Object type Summary
PluginIdTest::testGet public function @covers ::get
PluginIdTest::testGetId public function @covers ::getId

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