You are here

protected function DbLogFormInjectionTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 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() {
  parent::setUp();
  $this
    ->installSchema('dblog', [
    'watchdog',
  ]);
  $this
    ->installSchema('system', [
    'key_value_expire',
    'sequences',
  ]);
  $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);
}