public function PluginIdTest::testGetId in Drupal 9
Same name and namespace in other branches
- 8 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 40
Class
- PluginIdTest
- @coversDefaultClass \Drupal\Component\Annotation\PluginId @group Annotation
Namespace
Drupal\Tests\Component\AnnotationCode
public function testGetId() {
$plugin = new PluginID();
$plugin->value = 'example';
$this
->assertEquals('example', $plugin
->getId());
}