You are here

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

Tests getPluginClass() with a required interface but no implementation.

@covers ::getPluginClass

@expectedException \Drupal\Component\Plugin\Exception\PluginException @expectedExceptionMessage Plugin "cherry" (Drupal\plugin_test\Plugin\plugin_test\fruit\Kale) must implement interface Drupal\plugin_test\Plugin\plugin_test\fruit\FruitInterface.

File

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

Class

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

Namespace

Drupal\Tests\Component\Plugin

Code

public function testGetPluginClassWithInterfaceAndInvalidClassWithArrayPluginDefinition() {
  $plugin_class = Kale::class;
  DefaultFactory::getPluginClass('cherry', [
    'class' => $plugin_class,
    'provider' => 'core',
  ], FruitInterface::class);
}