You are here

protected function FileCacheTest::setUp in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/FileCache/FileCacheTest.php \Drupal\Tests\Component\FileCache\FileCacheTest::setUp()

File

core/tests/Drupal/Tests/Component/FileCache/FileCacheTest.php, line 31

Class

FileCacheTest
@coversDefaultClass \Drupal\Component\FileCache\FileCache @group FileCache

Namespace

Drupal\Tests\Component\FileCache

Code

protected function setUp() : void {
  parent::setUp();
  $this->fileCache = new FileCache('prefix', 'test', '\\Drupal\\Tests\\Component\\FileCache\\StaticFileCacheBackend', [
    'bin' => 'llama',
  ]);
  $this->staticFileCache = new StaticFileCacheBackend([
    'bin' => 'llama',
  ]);
}