public function PluginBaseTest::testGetBaseId in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php \Drupal\Tests\Component\Plugin\PluginBaseTest::testGetBaseId()
@dataProvider providerTestGetBaseId @coves ::getBaseId
File
- core/tests/ Drupal/ Tests/ Component/ Plugin/ PluginBaseTest.php, line 43 
Class
- PluginBaseTest
- @coversDefaultClass \Drupal\Component\Plugin\PluginBase @group Plugin
Namespace
Drupal\Tests\Component\PluginCode
public function testGetBaseId($plugin_id, $expected) {
  /** @var \Drupal\Component\Plugin\PluginBase|\PHPUnit\Framework\MockObject\MockObject $plugin_base */
  $plugin_base = $this
    ->getMockForAbstractClass('Drupal\\Component\\Plugin\\PluginBase', [
    [],
    $plugin_id,
    [],
  ]);
  $this
    ->assertEquals($expected, $plugin_base
    ->getBaseId());
}