function PluginTest::testGet
Same name in this branch
- 11.x core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testGet()
Same name in other branches
- 9 core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testGet()
- 8.9.x core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testGet()
- 10 core/tests/Drupal/Tests/Component/Annotation/PluginTest.php \Drupal\Tests\Component\Annotation\PluginTest::testGet()
- 10 core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginTest.php \Drupal\Tests\Component\Plugin\Attribute\PluginTest::testGet()
@covers ::__construct @covers ::get
File
-
core/
tests/ Drupal/ Tests/ Component/ Plugin/ Attribute/ PluginTest.php, line 20
Class
- PluginTest
- @coversDefaultClass \Drupal\Component\Plugin\Attribute\Plugin @group Attribute
Namespace
Drupal\Tests\Component\Plugin\AttributeCode
public function testGet() : void {
$plugin = new PluginStub(id: 'example', deriver: 'test');
$plugin->setClass('foo');
$this->assertEquals([
'id' => 'example',
'class' => 'foo',
'deriver' => 'test',
], $plugin->get());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.