function PluginBaseTest::testGetPluginDefinition
Same name in other branches
- 9 core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php \Drupal\Tests\Component\Plugin\PluginBaseTest::testGetPluginDefinition()
- 10 core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php \Drupal\Tests\Component\Plugin\PluginBaseTest::testGetPluginDefinition()
- 11.x core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php \Drupal\Tests\Component\Plugin\PluginBaseTest::testGetPluginDefinition()
@covers ::getPluginDefinition
File
-
core/
tests/ Drupal/ Tests/ Component/ Plugin/ PluginBaseTest.php, line 96
Class
- PluginBaseTest
- @coversDefaultClass \Drupal\Component\Plugin\PluginBase @group Plugin
Namespace
Drupal\Tests\Component\PluginCode
public function testGetPluginDefinition() {
$plugin_base = $this->getMockForAbstractClass('Drupal\\Component\\Plugin\\PluginBase', [
[],
'plugin_id',
[
'value',
[
'key' => 'value',
],
],
]);
$this->assertEquals([
'value',
[
'key' => 'value',
],
], $plugin_base->getPluginDefinition());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.