public function FileCacheFactoryTest::testGetSetPrefix in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php \Drupal\Tests\Component\FileCache\FileCacheFactoryTest::testGetSetPrefix()
- 9 core/tests/Drupal/Tests/Component/FileCache/FileCacheFactoryTest.php \Drupal\Tests\Component\FileCache\FileCacheFactoryTest::testGetSetPrefix()
@covers ::getPrefix @covers ::setPrefix
File
- core/
tests/ Drupal/ Tests/ Component/ FileCache/ FileCacheFactoryTest.php, line 176
Class
- FileCacheFactoryTest
- @coversDefaultClass \Drupal\Component\FileCache\FileCacheFactory @group FileCache
Namespace
Drupal\Tests\Component\FileCacheCode
public function testGetSetPrefix() {
// Random generator.
$random = new Random();
$prefix = $random
->name(8, TRUE);
FileCacheFactory::setPrefix($prefix);
$this
->assertEquals($prefix, FileCacheFactory::getPrefix());
}