function DbLogFormInjectionTest::setUp
Same name in other branches
- 9 core/modules/dblog/tests/src/Kernel/DbLogFormInjectionTest.php \Drupal\Tests\dblog\Kernel\DbLogFormInjectionTest::setUp()
- 10 core/modules/dblog/tests/src/Kernel/DbLogFormInjectionTest.php \Drupal\Tests\dblog\Kernel\DbLogFormInjectionTest::setUp()
- 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\KernelCode
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);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.