public function DefaultFactoryTest::testGetPluginClassWithNotExistingClassWithObjectPluginDefinition in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php \Drupal\Tests\Component\Plugin\DefaultFactoryTest::testGetPluginClassWithNotExistingClassWithObjectPluginDefinition()
- 10 core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php \Drupal\Tests\Component\Plugin\DefaultFactoryTest::testGetPluginClassWithNotExistingClassWithObjectPluginDefinition()
Tests getPluginClass() with a not existing class definition.
@covers ::getPluginClass
File
- core/
tests/ Drupal/ Tests/ Component/ Plugin/ DefaultFactoryTest.php, line 87
Class
- DefaultFactoryTest
- @coversDefaultClass \Drupal\Component\Plugin\Factory\DefaultFactory @group Plugin
Namespace
Drupal\Tests\Component\PluginCode
public function testGetPluginClassWithNotExistingClassWithObjectPluginDefinition() {
$plugin_class = 'Drupal\\Tests\\Component\\Plugin\\Fixtures\\vegetable\\Carrot';
$plugin_definition = $this
->getMockBuilder(PluginDefinitionInterface::class)
->getMock();
$plugin_definition
->expects($this
->atLeastOnce())
->method('getClass')
->willReturn($plugin_class);
$this
->expectException(PluginException::class);
DefaultFactory::getPluginClass('carrot', $plugin_definition);
}