public function DefaultFactoryTest::testGetPluginClassWithMissingClassWithArrayPluginDefinition 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::testGetPluginClassWithMissingClassWithArrayPluginDefinition()
Tests getPluginClass() with a missing class definition.
@covers ::getPluginClass
@expectedException \Drupal\Component\Plugin\Exception\PluginException @expectedExceptionMessage The plugin (cherry) did not specify an instance class.
File
- core/
tests/ Drupal/ Tests/ Component/ Plugin/ DefaultFactoryTest.php, line 59 - Contains \Drupal\Tests\Component\Plugin\DefaultFactoryTest.
Class
- DefaultFactoryTest
- @coversDefaultClass \Drupal\Component\Plugin\Factory\DefaultFactory @group Plugin
Namespace
Drupal\Tests\Component\PluginCode
public function testGetPluginClassWithMissingClassWithArrayPluginDefinition() {
DefaultFactory::getPluginClass('cherry', []);
}