function DefaultFactoryTest::testGetPluginClassWithNotExistingClassWithArrayPluginDefinition

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php \Drupal\Tests\Component\Plugin\DefaultFactoryTest::testGetPluginClassWithNotExistingClassWithArrayPluginDefinition()
  2. 10 core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php \Drupal\Tests\Component\Plugin\DefaultFactoryTest::testGetPluginClassWithNotExistingClassWithArrayPluginDefinition()
  3. 11.x core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php \Drupal\Tests\Component\Plugin\DefaultFactoryTest::testGetPluginClassWithNotExistingClassWithArrayPluginDefinition()

Tests getPluginClass() with a not existing class definition.

@covers ::getPluginClass

File

core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php, line 76

Class

DefaultFactoryTest
@coversDefaultClass \Drupal\Component\Plugin\Factory\DefaultFactory @group Plugin

Namespace

Drupal\Tests\Component\Plugin

Code

public function testGetPluginClassWithNotExistingClassWithArrayPluginDefinition() {
    $this->expectException(PluginException::class);
    $this->expectExceptionMessage('Plugin (carrot) instance class "Drupal\\Tests\\Component\\Plugin\\Fixtures\\vegetable\\Carrot" does not exist.');
    DefaultFactory::getPluginClass('carrot', [
        'class' => 'Drupal\\Tests\\Component\\Plugin\\Fixtures\\vegetable\\Carrot',
    ]);
}

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