You are here

protected function FileSystemBackendTest::setUp in File Cache 8

Overrides GenericCacheBackendUnitTestBase::setUp

File

tests/src/Kernel/FileSystemBackendTest.php, line 27

Class

FileSystemBackendTest
Tests the FileSystemBackend cache backend.

Namespace

Drupal\Tests\filecache\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installConfig([
    'system',
  ]);
  $this
    ->installEntitySchema('file');
  $this
    ->installEntitySchema('user');
  $this
    ->installSchema('file', [
    'file_usage',
  ]);
}