You are here

protected function DbLogFormInjectionTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/dblog/src/Tests/DbLogFormInjectionTest.php \Drupal\dblog\Tests\DbLogFormInjectionTest::setUp()

Performs setup tasks before each individual test method is run.

Overrides KernelTestBase::setUp

File

core/modules/dblog/src/Tests/DbLogFormInjectionTest.php, line 83
Contains \Drupal\dblog\Tests\DbLogFormInjectionTest.

Class

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

Namespace

Drupal\dblog\Tests

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(array(
    'name' => 'foobar',
    'mail' => 'foobar@example.com',
  ));
  $test_user
    ->save();
  \Drupal::service('current_user')
    ->setAccount($test_user);
}