protected function DbLogFormInjectionTest::setUp in Drupal 9
Same name and namespace in other branches
- 8 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\KernelCode
protected function setUp() : void {
  parent::setUp();
  $this
    ->installSchema('dblog', [
    'watchdog',
  ]);
  $this
    ->installSchema('system', [
    '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);
}