You are here

protected function DirectoryTest::setUp in Drupal 8

Overrides FileTestBase::setUp

1 call to DirectoryTest::setUp()
RemoteFileDirectoryTest::setUp in core/tests/Drupal/KernelTests/Core/File/RemoteFileDirectoryTest.php
1 method overrides DirectoryTest::setUp()
RemoteFileDirectoryTest::setUp in core/tests/Drupal/KernelTests/Core/File/RemoteFileDirectoryTest.php

File

core/tests/Drupal/KernelTests/Core/File/DirectoryTest.php, line 25

Class

DirectoryTest
Tests operations dealing with directories.

Namespace

Drupal\KernelTests\Core\File

Code

protected function setUp() {
  parent::setUp();

  // These additional tables are necessary due to the call to system_cron().
  $this
    ->installSchema('system', [
    'key_value_expire',
  ]);
}