function PluginFormFactoryTest::testCreateInstanceUsingPlugin
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Plugin/PluginFormFactoryTest.php \Drupal\Tests\Core\Plugin\PluginFormFactoryTest::testCreateInstanceUsingPlugin()
- 10 core/tests/Drupal/Tests/Core/Plugin/PluginFormFactoryTest.php \Drupal\Tests\Core\Plugin\PluginFormFactoryTest::testCreateInstanceUsingPlugin()
- 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 64
Class
- PluginFormFactoryTest
- @coversDefaultClass \Drupal\Core\Plugin\PluginFormFactory @group Plugin
Namespace
Drupal\Tests\Core\PluginCode
public function testCreateInstanceUsingPlugin() {
$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.