You are here

protected function StatusTest::setUp in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/System/StatusTest.php \Drupal\Tests\system\Functional\System\StatusTest::setUp()
  2. 9 core/modules/system/tests/src/Functional/System/StatusTest.php \Drupal\Tests\system\Functional\System\StatusTest::setUp()

Overrides BrowserTestBase::setUp

File

core/modules/system/tests/src/Functional/System/StatusTest.php, line 28

Class

StatusTest
Tests output on the status overview page.

Namespace

Drupal\Tests\system\Functional\System

Code

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

  // Unset the sync directory in settings.php to trigger the error.
  $settings['settings']['config_sync_directory'] = (object) [
    'value' => '',
    'required' => TRUE,
  ];
  $this
    ->writeSettings($settings);
  $admin_user = $this
    ->drupalCreateUser([
    'administer site configuration',
    'access site reports',
  ]);
  $this
    ->drupalLogin($admin_user);
}