function PluginIdTest::testGetId

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php \Drupal\Tests\Component\Annotation\PluginIdTest::testGetId()
  2. 8.9.x core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php \Drupal\Tests\Component\Annotation\PluginIdTest::testGetId()
  3. 10 core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php \Drupal\Tests\Component\Annotation\PluginIdTest::testGetId()

@covers ::getId

File

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

Class

PluginIdTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Component%21Annotation%21PluginID.php/class/PluginID/11.x" title="Defines a Plugin annotation object that just contains an ID." class="local">\Drupal\Component\Annotation\PluginID</a> @group Annotation

Namespace

Drupal\Tests\Component\Annotation

Code

public function testGetId() : void {
    $plugin = new PluginID();
    $plugin->value = 'example';
    $this->assertEquals('example', $plugin->getId());
}

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