You are here

public function DefaultFactoryTest::testGetPluginClassWithMissingClassWithObjectPluginDefinition in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php \Drupal\Tests\Component\Plugin\DefaultFactoryTest::testGetPluginClassWithMissingClassWithObjectPluginDefinition()

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 71
Contains \Drupal\Tests\Component\Plugin\DefaultFactoryTest.

Class

DefaultFactoryTest
@coversDefaultClass \Drupal\Component\Plugin\Factory\DefaultFactory @group Plugin

Namespace

Drupal\Tests\Component\Plugin

Code

public function testGetPluginClassWithMissingClassWithObjectPluginDefinition() {
  $plugin_definition = $this
    ->getMock(PluginDefinitionInterface::class);
  DefaultFactory::getPluginClass('cherry', $plugin_definition);
}