You are here

public function DefaultLazyPluginCollectionTest::testConfigurableGetConfiguration in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php \Drupal\Tests\Core\Plugin\DefaultLazyPluginCollectionTest::testConfigurableGetConfiguration()

@covers ::getConfiguration

File

core/tests/Drupal/Tests/Core/Plugin/DefaultLazyPluginCollectionTest.php, line 217
Contains \Drupal\Tests\Core\Plugin\DefaultLazyPluginCollectionTest.

Class

DefaultLazyPluginCollectionTest
@coversDefaultClass \Drupal\Core\Plugin\DefaultLazyPluginCollection @group Plugin

Namespace

Drupal\Tests\Core\Plugin

Code

public function testConfigurableGetConfiguration() {
  $this
    ->setupPluginCollection($this
    ->exactly(3));
  $config = $this->defaultPluginCollection
    ->getConfiguration();
  $this
    ->assertSame($this->config, $config);
}