protected function DbLogTest::setUp in Drupal 9
Same name in this branch
- 9 core/modules/dblog/tests/src/Functional/DbLogTest.php \Drupal\Tests\dblog\Functional\DbLogTest::setUp()
- 9 core/modules/dblog/tests/src/Kernel/DbLogTest.php \Drupal\Tests\dblog\Kernel\DbLogTest::setUp()
Same name and namespace in other branches
- 8 core/modules/dblog/tests/src/Kernel/DbLogTest.php \Drupal\Tests\dblog\Kernel\DbLogTest::setUp()
Overrides KernelTestBase::setUp
File
- core/
modules/ dblog/ tests/ src/ Kernel/ DbLogTest.php, line 27
Class
- DbLogTest
- Generate events and verify dblog entries.
Namespace
Drupal\Tests\dblog\KernelCode
protected function setUp() : void {
parent::setUp();
$this
->installSchema('dblog', [
'watchdog',
]);
$this
->installSchema('system', [
'sequences',
]);
$this
->installConfig([
'system',
]);
}