protected function HookDiscoveryTest::hookDiscoveryTestTestPlugin in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php \Drupal\Tests\Core\Plugin\Discovery\HookDiscoveryTest::hookDiscoveryTestTestPlugin()
 
2 calls to HookDiscoveryTest::hookDiscoveryTestTestPlugin()
- 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 139  
Class
- HookDiscoveryTest
 - @coversDefaultClass \Drupal\Core\Plugin\Discovery\HookDiscovery @group Plugin
 
Namespace
Drupal\Tests\Core\Plugin\DiscoveryCode
protected function hookDiscoveryTestTestPlugin() {
  return [
    'test_id_1' => [
      'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Apple',
    ],
    'test_id_2' => [
      'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Orange',
    ],
  ];
}