function FileCacheFactoryTest::testGetNoPrefix

@covers ::get

File

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

Class

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

Namespace

Drupal\Tests\Component\FileCache

Code

public function testGetNoPrefix() {
  FileCacheFactory::setPrefix(NULL);
  $this->expectException(\InvalidArgumentException::class);
  $this->expectExceptionMessage('Required prefix configuration is missing');
  FileCacheFactory::get('test_foo_settings', []);
}

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