function DbLogFormInjectionTest::setUp

Same name and namespace in other branches
  1. 9 core/modules/dblog/tests/src/Kernel/DbLogFormInjectionTest.php \Drupal\Tests\dblog\Kernel\DbLogFormInjectionTest::setUp()
  2. 8.9.x core/modules/dblog/tests/src/Kernel/DbLogFormInjectionTest.php \Drupal\Tests\dblog\Kernel\DbLogFormInjectionTest::setUp()
  3. 11.x core/modules/dblog/tests/src/Kernel/DbLogFormInjectionTest.php \Drupal\Tests\dblog\Kernel\DbLogFormInjectionTest::setUp()

Overrides KernelTestBase::setUp

File

core/modules/dblog/tests/src/Kernel/DbLogFormInjectionTest.php, line 78

Class

DbLogFormInjectionTest
Tests serializing a form with an injected dblog logger instance.

Namespace

Drupal\Tests\dblog\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $this->installSchema('dblog', [
    'watchdog',
  ]);
  $this->installEntitySchema('user');
  $this->logger = \Drupal::logger('test_logger');
  $test_user = User::create([
    'name' => 'foobar',
    'mail' => 'foobar@example.com',
  ]);
  $test_user->save();
  \Drupal::service('current_user')->setAccount($test_user);
}

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