public function DefaultLazyPluginCollectionTest::testAddInstanceId in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php \Drupal\Tests\Core\Plugin\DefaultLazyPluginCollectionTest::testAddInstanceId()
@covers ::addInstanceId
File
- core/
tests/ Drupal/ Tests/ Core/ Plugin/ DefaultLazyPluginCollectionTest.php, line 119 - Contains \Drupal\Tests\Core\Plugin\DefaultLazyPluginCollectionTest.
Class
- DefaultLazyPluginCollectionTest
- @coversDefaultClass \Drupal\Core\Plugin\DefaultLazyPluginCollection @group Plugin
Namespace
Drupal\Tests\Core\PluginCode
public function testAddInstanceId() {
$this
->setupPluginCollection($this
->exactly(4));
$expected = array(
'banana' => 'banana',
'cherry' => 'cherry',
'apple' => 'apple',
);
$this->defaultPluginCollection
->addInstanceId('apple');
$result = $this->defaultPluginCollection
->getInstanceIds();
$this
->assertSame($expected, $result);
$this
->assertSame($expected, array_intersect_key($result, $this->defaultPluginCollection
->getConfiguration()));
$expected = array(
'cherry' => 'cherry',
'apple' => 'apple',
'banana' => 'banana',
);
$this->defaultPluginCollection
->removeInstanceId('banana');
$this->defaultPluginCollection
->addInstanceId('banana', $this->config['banana']);
$result = $this->defaultPluginCollection
->getInstanceIds();
$this
->assertSame($expected, $result);
$this
->assertSame($expected, array_intersect_key($result, $this->defaultPluginCollection
->getConfiguration()));
}