You are here

public function DefaultFactoryTest::testGetPluginClassWithMissingClassWithObjectPluginDefinition in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php \Drupal\Tests\Component\Plugin\DefaultFactoryTest::testGetPluginClassWithMissingClassWithObjectPluginDefinition()

Tests getPluginClass() with a missing class definition.

@covers ::getPluginClass

File

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

Class

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

Namespace

Drupal\Tests\Component\Plugin

Code

public function testGetPluginClassWithMissingClassWithObjectPluginDefinition() {
  $plugin_definition = $this
    ->getMockBuilder(PluginDefinitionInterface::class)
    ->getMock();
  $this
    ->expectException(PluginException::class);
  $this
    ->expectExceptionMessage('The plugin (corn) did not specify an instance class.');
  DefaultFactory::getPluginClass('corn', $plugin_definition);
}