You are here

public function DefaultPluginManagerTest::testGetDefinitionsWithoutRequiredInterface in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Plugin/DefaultPluginManagerTest.php \Drupal\Tests\Core\Plugin\DefaultPluginManagerTest::testGetDefinitionsWithoutRequiredInterface()
  2. 9 core/tests/Drupal/Tests/Core/Plugin/DefaultPluginManagerTest.php \Drupal\Tests\Core\Plugin\DefaultPluginManagerTest::testGetDefinitionsWithoutRequiredInterface()

Tests plugins without a required interface.

@covers ::getDefinitions

File

core/tests/Drupal/Tests/Core/Plugin/DefaultPluginManagerTest.php, line 317

Class

DefaultPluginManagerTest
Tests the DefaultPluginManager.

Namespace

Drupal\Tests\Core\Plugin

Code

public function testGetDefinitionsWithoutRequiredInterface() {
  $module_handler = $this
    ->createMock('Drupal\\Core\\Extension\\ModuleHandlerInterface');
  $module_handler
    ->expects($this
    ->any())
    ->method('moduleExists')
    ->with('plugin_test')
    ->willReturn(FALSE);
  $this->expectedDefinitions['kale'] = [
    'id' => 'kale',
    'label' => 'Kale',
    'color' => 'green',
    'class' => 'Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Kale',
    'provider' => 'plugin_test',
  ];
  $this->expectedDefinitions['apple']['provider'] = 'plugin_test';
  $this->expectedDefinitions['banana']['provider'] = 'plugin_test';
  $plugin_manager = new TestPluginManager($this->namespaces, $this->expectedDefinitions, $module_handler, NULL);
  $this
    ->assertIsArray($plugin_manager
    ->getDefinitions());
}