You are here

protected function HookDiscoveryTest::hookDiscoveryTest2TestPlugin in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php \Drupal\Tests\Core\Plugin\Discovery\HookDiscoveryTest::hookDiscoveryTest2TestPlugin()
2 calls to HookDiscoveryTest::hookDiscoveryTest2TestPlugin()
HookDiscoveryTest::testGetDefinition in core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php
Tests the getDefinition method with some plugins.
HookDiscoveryTest::testGetDefinitions in core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php
Tests the getDefinitions() method with some plugins.

File

core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php, line 146

Class

HookDiscoveryTest
@coversDefaultClass \Drupal\Core\Plugin\Discovery\HookDiscovery @group Plugin

Namespace

Drupal\Tests\Core\Plugin\Discovery

Code

protected function hookDiscoveryTest2TestPlugin() {
  return [
    'test_id_3' => [
      'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Cherry',
    ],
  ];
}