PluginHelperLegacyTest.php

Same filename and directory in other branches
  1. 10 core/tests/Drupal/Tests/Component/Plugin/PluginHelperLegacyTest.php

Namespace

Drupal\Tests\Component\Plugin

File

core/tests/Drupal/Tests/Component/Plugin/PluginHelperLegacyTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Component\Plugin;

use Drupal\Component\Plugin\ConfigurableInterface;
use Drupal\Component\Plugin\PluginHelper;
use PHPUnit\Framework\TestCase;
use Symfony\Bridge\PhpUnit\ExpectDeprecationTrait;

/**
 * @coversDefaultClass \Drupal\Component\Plugin\PluginHelper
 * @group Plugin
 * @group legacy
 */
class PluginHelperLegacyTest extends TestCase {
    use ExpectDeprecationTrait;
    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));
    }

}

Classes

Title Deprecated Summary
PluginHelperLegacyTest @coversDefaultClass \Drupal\Component\Plugin\PluginHelper @group Plugin @group legacy

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.