function PluginTest::testGet
@covers ::__construct
@covers ::get
File
-
core/
tests/ Drupal/ Tests/ Component/ Plugin/ Attribute/ PluginTest.php, line 20
Class
- PluginTest
- @coversDefaultClass \Drupal\Component\Annotation\Plugin[[api-linebreak]] @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.