You are here

public function PluginBaseTest::testGetPluginId in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php \Drupal\Tests\Component\Plugin\PluginBaseTest::testGetPluginId()

@dataProvider providerTestGetPluginId @covers ::getPluginId

File

core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php, line 17

Class

PluginBaseTest
@coversDefaultClass \Drupal\Component\Plugin\PluginBase @group Plugin

Namespace

Drupal\Tests\Component\Plugin

Code

public function testGetPluginId($plugin_id, $expected) {
  $plugin_base = $this
    ->getMockForAbstractClass('Drupal\\Component\\Plugin\\PluginBase', [
    [],
    $plugin_id,
    [],
  ]);
  $this
    ->assertEquals($expected, $plugin_base
    ->getPluginId());
}