function PluginIdTest::testGet
Same name in this branch
- 11.x core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginIdTest.php \Drupal\Tests\Component\Plugin\Attribute\PluginIdTest::testGet()
Same name in other branches
- 9 core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php \Drupal\Tests\Component\Annotation\PluginIdTest::testGet()
- 8.9.x core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php \Drupal\Tests\Component\Annotation\PluginIdTest::testGet()
- 10 core/tests/Drupal/Tests/Component/Annotation/PluginIdTest.php \Drupal\Tests\Component\Annotation\PluginIdTest::testGet()
- 10 core/tests/Drupal/Tests/Component/Plugin/Attribute/PluginIdTest.php \Drupal\Tests\Component\Plugin\Attribute\PluginIdTest::testGet()
@covers ::get
File
-
core/
tests/ Drupal/ Tests/ Component/ Annotation/ PluginIdTest.php, line 19
Class
- PluginIdTest
- @coversDefaultClass \Drupal\Component\Annotation\PluginID @group Annotation
Namespace
Drupal\Tests\Component\AnnotationCode
public function testGet() : void {
// Assert plugin starts empty.
$plugin = new PluginID();
$this->assertEquals([
'id' => NULL,
'class' => NULL,
'provider' => NULL,
], $plugin->get());
// Set values and ensure we can retrieve them.
$plugin->value = 'foo';
$plugin->setClass('bar');
$plugin->setProvider('baz');
$this->assertEquals([
'id' => 'foo',
'class' => 'bar',
'provider' => 'baz',
], $plugin->get());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.