function ConfigTest::testSaveNew

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

@covers ::save
@dataProvider nestedDataProvider

File

core/tests/Drupal/Tests/Core/Config/ConfigTest.php, line 136

Class

ConfigTest
Tests the Config.

Namespace

Drupal\Tests\Core\Config

Code

public function testSaveNew($data) : void {
  $this->cacheTagsInvalidator
    ->expects($this->never())
    ->method('invalidateTags');
  // Set initial data.
  $this->config
    ->setData($data);
  // Check that original data has not been set yet.
  foreach ($data as $key => $value) {
    $this->assertNull($this->config
      ->getOriginal($key, FALSE));
  }
  // Save so that the original data is set.
  $config = $this->config
    ->save();
  // Check that returned $config is instance of Config.
  $this->assertInstanceOf('\\Drupal\\Core\\Config\\Config', $config);
  // Check that the original data it saved.
  $this->assertOriginalConfigDataEquals($data, TRUE);
}

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