function FileCacheFactoryTest::testGetSetConfiguration

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php \Drupal\Tests\Component\FileCache\FileCacheFactoryTest::testGetSetConfiguration()
  2. 8.9.x core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php \Drupal\Tests\Component\FileCache\FileCacheFactoryTest::testGetSetConfiguration()
  3. 11.x core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php \Drupal\Tests\Component\FileCache\FileCacheFactoryTest::testGetSetConfiguration()

@covers ::getConfiguration
@covers ::setConfiguration

File

core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php, line 160

Class

FileCacheFactoryTest
@coversDefaultClass \Drupal\Component\FileCache\FileCacheFactory[[api-linebreak]] @group FileCache

Namespace

Drupal\Tests\Component\FileCache

Code

public function testGetSetConfiguration() : void {
  $configuration = FileCacheFactory::getConfiguration();
  $configuration['test_foo_bar'] = [
    'bar' => 'llama',
  ];
  FileCacheFactory::setConfiguration($configuration);
  $configuration = FileCacheFactory::getConfiguration();
  $this->assertEquals([
    'bar' => 'llama',
  ], $configuration['test_foo_bar']);
}

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