function DefaultFactoryTest::testGetPluginClassWithInterfaceAndInvalidClassWithArrayPluginDefinition

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

Tests getPluginClass() with a required interface but no implementation.

@covers ::getPluginClass

File

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

Class

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

Namespace

Drupal\Tests\Component\Plugin

Code

public function testGetPluginClassWithInterfaceAndInvalidClassWithArrayPluginDefinition() : void {
    $this->expectException(PluginException::class);
    $this->expectExceptionMessage('Plugin "corn" (Drupal\\Tests\\Component\\Plugin\\Fixtures\\vegetable\\Broccoli) must implement interface Drupal\\Tests\\Component\\Plugin\\Fixtures\\vegetable\\VegetableInterface.');
    DefaultFactory::getPluginClass('corn', [
        'class' => Broccoli::class,
    ], VegetableInterface::class);
}

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