function SystemLocalTasksTest::setUp

Same name in other branches
  1. 9 core/modules/system/tests/src/Unit/Menu/SystemLocalTasksTest.php \Drupal\Tests\system\Unit\Menu\SystemLocalTasksTest::setUp()
  2. 10 core/modules/system/tests/src/Unit/Menu/SystemLocalTasksTest.php \Drupal\Tests\system\Unit\Menu\SystemLocalTasksTest::setUp()
  3. 11.x core/modules/system/tests/src/Unit/Menu/SystemLocalTasksTest.php \Drupal\Tests\system\Unit\Menu\SystemLocalTasksTest::setUp()

Overrides LocalTaskIntegrationTestBase::setUp

File

core/modules/system/tests/src/Unit/Menu/SystemLocalTasksTest.php, line 25

Class

SystemLocalTasksTest
Tests existence of system local tasks.

Namespace

Drupal\Tests\system\Unit\Menu

Code

protected function setUp() {
    parent::setUp();
    $this->directoryList = [
        'system' => 'core/modules/system',
    ];
    $this->themeHandler = $this->createMock('Drupal\\Core\\Extension\\ThemeHandlerInterface');
    $theme = new Extension($this->root, 'theme', 'core/themes/bartik', 'bartik.info.yml');
    $theme->status = 1;
    $theme->info = [
        'name' => 'bartik',
    ];
    $this->themeHandler
        ->expects($this->any())
        ->method('listInfo')
        ->will($this->returnValue([
        'bartik' => $theme,
    ]));
    $this->themeHandler
        ->expects($this->any())
        ->method('hasUi')
        ->with('bartik')
        ->willReturn(TRUE);
    $this->container
        ->set('theme_handler', $this->themeHandler);
}

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