Same name and namespace in other branches
  1. 10 core/tests/Drupal/Tests/UnitTestCase.php \Drupal\Tests\UnitTestCase::setUp()
  2. 9 core/tests/Drupal/Tests/UnitTestCase.php \Drupal\Tests\UnitTestCase::setUp()
4 calls to UnitTestCase::setUp()
ElementInfoManagerTest::setUp in core/tests/Drupal/Tests/Core/Render/ElementInfoManagerTest.php
@covers ::__construct
EntityRevisionTest::setUp in core/modules/migrate/tests/src/Unit/destination/EntityRevisionTest.php
EntityTypeManagerTest::setUp in core/tests/Drupal/Tests/Core/Entity/EntityTypeManagerTest.php
PasswordHashingTest::setUp in core/tests/Drupal/Tests/Core/Password/PasswordHashingTest.php
340 methods override UnitTestCase::setUp()
AcceptHeaderMatcherTest::setUp in core/tests/Drupal/Tests/Core/Routing/AcceptHeaderMatcherTest.php
AccessAwareRouterTest::setUp in core/tests/Drupal/Tests/Core/Routing/AccessAwareRouterTest.php
AccessGroupAndTest::setUp in core/modules/block_content/tests/src/Unit/Access/AccessGroupAndTest.php
AccessManagerTest::setUp in core/tests/Drupal/Tests/Core/Access/AccessManagerTest.php
AccessResultTest::setUp in core/tests/Drupal/Tests/Core/Access/AccessResultTest.php

... See full list

File

core/tests/Drupal/Tests/UnitTestCase.php, line 40

Class

UnitTestCase
Provides a base class and helpers for Drupal unit tests.

Namespace

Drupal\Tests

Code

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

  // Ensure that an instantiated container in the global state of \Drupal from
  // a previous test does not leak into this test.
  \Drupal::unsetContainer();

  // Ensure that the NullFileCache implementation is used for the FileCache as
  // unit tests should not be relying on caches implicitly.
  FileCacheFactory::setConfiguration([
    FileCacheFactory::DISABLE_CACHE => TRUE,
  ]);

  // Ensure that FileCacheFactory has a prefix.
  FileCacheFactory::setPrefix('prefix');
  $this->root = dirname(dirname(substr(__DIR__, 0, -strlen(__NAMESPACE__))));
}