function ConfigFormBaseTraitTest::testConfig

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Form/ConfigFormBaseTraitTest.php \Drupal\Tests\Core\Form\ConfigFormBaseTraitTest::testConfig()
  2. 8.9.x core/tests/Drupal/Tests/Core/Form/ConfigFormBaseTraitTest.php \Drupal\Tests\Core\Form\ConfigFormBaseTraitTest::testConfig()
  3. 11.x core/tests/Drupal/Tests/Core/Form/ConfigFormBaseTraitTest.php \Drupal\Tests\Core\Form\ConfigFormBaseTraitTest::testConfig()

@covers ::config

File

core/tests/Drupal/Tests/Core/Form/ConfigFormBaseTraitTest.php, line 19

Class

ConfigFormBaseTraitTest
@coversDefaultClass \Drupal\Core\Form\ConfigFormBaseTrait[[api-linebreak]] @group Form

Namespace

Drupal\Tests\Core\Form

Code

public function testConfig() : void {
  $trait = $this->createPartialMock(ConfiguredTrait::class, [
    'getEditableConfigNames',
  ]);
  // Set up some configuration in a mocked config factory.
  $trait->configFactory = $this->getConfigFactoryStub([
    'editable.config' => [],
    'immutable.config' => [],
  ]);
  $trait->expects($this->any())
    ->method('getEditableConfigNames')
    ->willReturn([
    'editable.config',
  ]);
  $config_method = new \ReflectionMethod($trait, 'config');
  // Ensure that configuration that is expected to be mutable is.
  $result = $config_method->invoke($trait, 'editable.config');
  $this->assertInstanceOf('\\Drupal\\Core\\Config\\Config', $result);
  $this->assertNotInstanceOf('\\Drupal\\Core\\Config\\ImmutableConfig', $result);
  // Ensure that configuration that is expected to be immutable is.
  $result = $config_method->invoke($trait, 'immutable.config');
  $this->assertInstanceOf('\\Drupal\\Core\\Config\\ImmutableConfig', $result);
}

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