function DefaultFactoryTest::testGetPluginClassWithValidArrayPluginDefinition

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php \Drupal\Tests\Component\Plugin\DefaultFactoryTest::testGetPluginClassWithValidArrayPluginDefinition()
  2. 8.9.x core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php \Drupal\Tests\Component\Plugin\DefaultFactoryTest::testGetPluginClassWithValidArrayPluginDefinition()
  3. 10 core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php \Drupal\Tests\Component\Plugin\DefaultFactoryTest::testGetPluginClassWithValidArrayPluginDefinition()

Tests getPluginClass() with a valid array plugin definition.

@covers ::getPluginClass

File

core/tests/Drupal/Tests/Component/Plugin/DefaultFactoryTest.php, line 26

Class

DefaultFactoryTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Component%21Plugin%21Factory%21DefaultFactory.php/class/DefaultFactory/11.x" title="Default plugin factory." class="local">\Drupal\Component\Plugin\Factory\DefaultFactory</a> @group Plugin

Namespace

Drupal\Tests\Component\Plugin

Code

public function testGetPluginClassWithValidArrayPluginDefinition() : void {
    $plugin_class = Corn::class;
    $class = DefaultFactory::getPluginClass('corn', [
        'class' => $plugin_class,
    ]);
    $this->assertEquals($plugin_class, $class);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.