function PluginTest::testGetId

Same name in other branches
  1. 8.9.x core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testGetId()
  2. 10 core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testGetId()
  3. 10 core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginTest.php \Drupal\Tests\Component\Plugin\Attribute\PluginTest::testGetId()
  4. 11.x core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testGetId()
  5. 11.x core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginTest.php \Drupal\Tests\Component\Plugin\Attribute\PluginTest::testGetId()

@covers ::getId

File

core/tests/Drupal/Tests/Component/Annotation/PluginTest.php, line 71

Class

PluginTest
@coversDefaultClass \Drupal\Component\Annotation\Plugin @group Annotation

Namespace

Drupal\Tests\Component\Annotation

Code

public function testGetId() {
    $plugin = new Plugin([
        'id' => 'example',
    ]);
    $this->assertEquals('example', $plugin->getId());
}

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