function PluginHelperLegacyTest::testPluginHelperDeprecation
Same name in other branches
- 11.x core/tests/Drupal/Tests/Component/Plugin/PluginHelperLegacyTest.php \Drupal\Tests\Component\Plugin\PluginHelperLegacyTest::testPluginHelperDeprecation()
File
-
core/
tests/ Drupal/ Tests/ Component/ Plugin/ PluginHelperLegacyTest.php, line 20
Class
- PluginHelperLegacyTest
- @coversDefaultClass \Drupal\Component\Plugin\PluginHelper @group Plugin @group legacy
Namespace
Drupal\Tests\Component\PluginCode
public function testPluginHelperDeprecation() : void {
$this->expectDeprecation('The Drupal\\Component\\Plugin\\PluginHelper is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. Instead, use instanceof() to check for \\Drupal\\Component\\Plugin\\ConfigurableInterface. See https://www.drupal.org/node/3198285');
$this->assertEquals($this instanceof ConfigurableInterface, PluginHelper::isConfigurable($this));
$plugin = $this->createMock(ConfigurableInterface::class);
$this->assertEquals($plugin instanceof ConfigurableInterface, PluginHelper::isConfigurable($plugin));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.