function ImmutableConfigTest::setUp

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest::setUp()
  2. 10 core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest::setUp()
  3. 9 core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest::setUp()
  4. 8.9.x core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest::setUp()

Overrides UnitTestCase::setUp

File

core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php, line 30

Class

ImmutableConfigTest
Tests Drupal\Core\Config\ImmutableConfig.

Namespace

Drupal\Tests\Core\Config

Code

protected function setUp() : void {
  parent::setUp();
  $storage = $this->createMock('Drupal\\Core\\Config\\StorageInterface');
  $event_dispatcher = $this->createMock('Symfony\\Contracts\\EventDispatcher\\EventDispatcherInterface');
  $typed_config = $this->createMock('Drupal\\Core\\Config\\TypedConfigManagerInterface');
  $this->config = new ImmutableConfig('test', $storage, $event_dispatcher, $typed_config);
}

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