public function PluginTest::testGetId in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\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\AnnotationCode
public function testGetId() {
  $plugin = new Plugin([
    'id' => 'example',
  ]);
  $this
    ->assertEquals('example', $plugin
    ->getId());
}