You are here

protected function LingotekModuleUninstallationTest::setUp in Lingotek Translation 4.0.x

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/LingotekModuleUninstallationTest.php \Drupal\Tests\lingotek\Functional\LingotekModuleUninstallationTest::setUp()
  2. 3.0.x tests/src/Functional/LingotekModuleUninstallationTest.php \Drupal\Tests\lingotek\Functional\LingotekModuleUninstallationTest::setUp()
  3. 3.1.x tests/src/Functional/LingotekModuleUninstallationTest.php \Drupal\Tests\lingotek\Functional\LingotekModuleUninstallationTest::setUp()
  4. 3.2.x tests/src/Functional/LingotekModuleUninstallationTest.php \Drupal\Tests\lingotek\Functional\LingotekModuleUninstallationTest::setUp()
  5. 3.3.x tests/src/Functional/LingotekModuleUninstallationTest.php \Drupal\Tests\lingotek\Functional\LingotekModuleUninstallationTest::setUp()
  6. 3.4.x tests/src/Functional/LingotekModuleUninstallationTest.php \Drupal\Tests\lingotek\Functional\LingotekModuleUninstallationTest::setUp()
  7. 3.5.x tests/src/Functional/LingotekModuleUninstallationTest.php \Drupal\Tests\lingotek\Functional\LingotekModuleUninstallationTest::setUp()
  8. 3.6.x tests/src/Functional/LingotekModuleUninstallationTest.php \Drupal\Tests\lingotek\Functional\LingotekModuleUninstallationTest::setUp()
  9. 3.7.x tests/src/Functional/LingotekModuleUninstallationTest.php \Drupal\Tests\lingotek\Functional\LingotekModuleUninstallationTest::setUp()
  10. 3.8.x tests/src/Functional/LingotekModuleUninstallationTest.php \Drupal\Tests\lingotek\Functional\LingotekModuleUninstallationTest::setUp()

Overrides BrowserTestBase::setUp

File

tests/src/Functional/LingotekModuleUninstallationTest.php, line 24

Class

LingotekModuleUninstallationTest
Tests that the module can be uninstalled.

Namespace

Drupal\Tests\lingotek\Functional

Code

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

  // Place the actions and title block.
  $this
    ->drupalPlaceBlock('page_title_block', [
    'region' => 'content',
    'weight' => -5,
  ]);
  $this
    ->drupalPlaceBlock('local_tasks_block', [
    'region' => 'content',
    'weight' => -10,
  ]);
}