function DefaultLazyPluginCollectionTest::testSetInstanceConfiguration
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php \Drupal\Tests\Core\Plugin\DefaultLazyPluginCollectionTest::testSetInstanceConfiguration()
- 10 core/tests/Drupal/Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php \Drupal\Tests\Core\Plugin\DefaultLazyPluginCollectionTest::testSetInstanceConfiguration()
- 11.x core/tests/Drupal/Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php \Drupal\Tests\Core\Plugin\DefaultLazyPluginCollectionTest::testSetInstanceConfiguration()
@covers ::setInstanceConfiguration
File
-
core/
tests/ Drupal/ Tests/ Core/ Plugin/ DefaultLazyPluginCollectionTest.php, line 157
Class
- DefaultLazyPluginCollectionTest
- @coversDefaultClass \Drupal\Core\Plugin\DefaultLazyPluginCollection @group Plugin
Namespace
Drupal\Tests\Core\PluginCode
public function testSetInstanceConfiguration() {
$this->setupPluginCollection($this->exactly(3));
$expected = [
'id' => 'cherry',
'key' => 'value',
'custom' => 'bananas',
];
$this->defaultPluginCollection
->setInstanceConfiguration('cherry', $expected);
$config = $this->defaultPluginCollection
->getConfiguration();
$this->assertSame($expected, $config['cherry']);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.