function DefaultFactoryTest::testGetPluginClassWithInterfaceAndInvalidClassWithObjectPluginDefinition

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

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

@covers ::getPluginClass

File

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

Class

DefaultFactoryTest
@coversDefaultClass \Drupal\Component\Plugin\Factory\DefaultFactory[[api-linebreak]] @group Plugin

Namespace

Drupal\Tests\Component\Plugin

Code

public function testGetPluginClassWithInterfaceAndInvalidClassWithObjectPluginDefinition() : void {
  $plugin_class = Broccoli::class;
  $plugin_definition = $this->getMockBuilder(PluginDefinitionInterface::class)
    ->getMock();
  $plugin_definition->expects($this->atLeastOnce())
    ->method('getClass')
    ->willReturn($plugin_class);
  $this->expectException(PluginException::class);
  DefaultFactory::getPluginClass('corn', $plugin_definition, VegetableInterface::class);
}

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