You are here

public function DefaultFactoryTest::testGetPluginClassWithNotExistingClassWithObjectPluginDefinition 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::testGetPluginClassWithNotExistingClassWithObjectPluginDefinition()

Tests getPluginClass() with a not existing class definition.

@covers ::getPluginClass

@expectedException \Drupal\Component\Plugin\Exception\PluginException

File

core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php, line 95
Contains \Drupal\Tests\Component\Plugin\DefaultFactoryTest.

Class

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

Namespace

Drupal\Tests\Component\Plugin

Code

public function testGetPluginClassWithNotExistingClassWithObjectPluginDefinition() {
  $plugin_class = '\\Drupal\\plugin_test\\Plugin\\plugin_test\\fruit\\Kiwifruit';
  $plugin_definition = $this
    ->getMock(PluginDefinitionInterface::class);
  $plugin_definition
    ->expects($this
    ->atLeastOnce())
    ->method('getClass')
    ->willReturn($plugin_class);
  DefaultFactory::getPluginClass('kiwifruit', $plugin_definition);
}