function PluginFormFactoryTest::testCreateInstanceUsingPlugin

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Plugin/PluginFormFactoryTest.php \Drupal\Tests\Core\Plugin\PluginFormFactoryTest::testCreateInstanceUsingPlugin()
  2. 8.9.x core/tests/Drupal/Tests/Core/Plugin/PluginFormFactoryTest.php \Drupal\Tests\Core\Plugin\PluginFormFactoryTest::testCreateInstanceUsingPlugin()
  3. 11.x core/tests/Drupal/Tests/Core/Plugin/PluginFormFactoryTest.php \Drupal\Tests\Core\Plugin\PluginFormFactoryTest::testCreateInstanceUsingPlugin()

@covers ::createInstance

File

core/tests/Drupal/Tests/Core/Plugin/PluginFormFactoryTest.php, line 66

Class

PluginFormFactoryTest
@coversDefaultClass \Drupal\Core\Plugin\PluginFormFactory[[api-linebreak]] @group Plugin

Namespace

Drupal\Tests\Core\Plugin

Code

public function testCreateInstanceUsingPlugin() : void {
  $this->classResolver
    ->getInstanceFromDefinition(Argument::cetera())
    ->shouldNotBeCalled();
  $plugin = $this->prophesize(PluginWithFormsInterface::class)
    ->willImplement(PluginFormInterface::class);
  $plugin->hasFormClass('configure')
    ->willReturn(TRUE);
  $plugin->getFormClass('configure')
    ->willReturn(get_class($plugin->reveal()));
  $form_object = $this->manager
    ->createInstance($plugin->reveal(), 'configure');
  $this->assertSame($plugin->reveal(), $form_object);
}

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