function DefaultFactoryTest::testGetPluginClassWithMissingClassWithObjectPluginDefinition

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

Tests getPluginClass() with a missing class definition.

File

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

Class

DefaultFactoryTest
Tests Drupal\Component\Plugin\Factory\DefaultFactory.

Namespace

Drupal\Tests\Component\Plugin

Code

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

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