function PluginBaseTest::providerTestGetPluginId

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php \Drupal\Tests\Component\Plugin\PluginBaseTest::providerTestGetPluginId()
  2. 8.9.x core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php \Drupal\Tests\Component\Plugin\PluginBaseTest::providerTestGetPluginId()
  3. 11.x core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php \Drupal\Tests\Component\Plugin\PluginBaseTest::providerTestGetPluginId()

Returns test data for testGetPluginId().

Return value

array

File

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

Class

PluginBaseTest
@coversDefaultClass \Drupal\Component\Plugin\PluginBase[[api-linebreak]] @group Plugin

Namespace

Drupal\Tests\Component\Plugin

Code

public static function providerTestGetPluginId() {
  return [
    [
      'base_id',
      'base_id',
    ],
    [
      'base_id:derivative',
      'base_id:derivative',
    ],
  ];
}

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