public function DefaultFactoryTest::testGetPluginClassWithNotExistingClassWithArrayPluginDefinition in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php \Drupal\Tests\Component\Plugin\DefaultFactoryTest::testGetPluginClassWithNotExistingClassWithArrayPluginDefinition()
Tests getPluginClass() with a not existing class definition.
@covers ::getPluginClass
@expectedException \Drupal\Component\Plugin\Exception\PluginException @expectedExceptionMessage Plugin (kiwifruit) instance class "\Drupal\plugin_test\Plugin\plugin_test\fruit\Kiwifruit" does not exist.
File
- core/
tests/ Drupal/ Tests/ Component/ Plugin/ DefaultFactoryTest.php, line 84 - Contains \Drupal\Tests\Component\Plugin\DefaultFactoryTest.
Class
- DefaultFactoryTest
- @coversDefaultClass \Drupal\Component\Plugin\Factory\DefaultFactory @group Plugin
Namespace
Drupal\Tests\Component\PluginCode
public function testGetPluginClassWithNotExistingClassWithArrayPluginDefinition() {
DefaultFactory::getPluginClass('kiwifruit', [
'class' => '\\Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Kiwifruit',
]);
}