public function DefaultFactoryTest::testGetPluginClassWithMissingClassWithArrayPluginDefinition in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php \Drupal\Tests\Component\Plugin\DefaultFactoryTest::testGetPluginClassWithMissingClassWithArrayPluginDefinition()
Tests getPluginClass() with a missing class definition.
@covers ::getPluginClass
File
- core/
tests/ Drupal/ Tests/ Component/ Plugin/ DefaultFactoryTest.php, line 52
Class
- DefaultFactoryTest
- @coversDefaultClass \Drupal\Component\Plugin\Factory\DefaultFactory @group Plugin
Namespace
Drupal\Tests\Component\PluginCode
public function testGetPluginClassWithMissingClassWithArrayPluginDefinition() {
$this
->expectException(PluginException::class);
$this
->expectExceptionMessage('The plugin (corn) did not specify an instance class.');
DefaultFactory::getPluginClass('corn', []);
}