function LocaleTranslationTest::setUp

Overrides UnitTestCase::setUp

File

core/modules/locale/tests/src/Unit/LocaleTranslationTest.php, line 57

Class

LocaleTranslationTest
@coversDefaultClass \Drupal\locale\LocaleTranslation[[api-linebreak]] @group locale

Namespace

Drupal\Tests\locale\Unit

Code

protected function setUp() : void {
  parent::setUp();
  $this->storage = $this->createMock('Drupal\\locale\\StringStorageInterface');
  $this->cache = $this->createMock('Drupal\\Core\\Cache\\CacheBackendInterface');
  $this->lock = $this->createMock('Drupal\\Core\\Lock\\LockBackendInterface');
  $this->languageManager = $this->createMock('Drupal\\Core\\Language\\LanguageManagerInterface');
  $this->requestStack = new RequestStack();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.