You are here

protected function EmailActionTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Action/EmailActionTest.php \Drupal\KernelTests\Core\Action\EmailActionTest::setUp()

Overrides KernelTestBase::setUp

File

core/tests/Drupal/KernelTests/Core/Action/EmailActionTest.php, line 24

Class

EmailActionTest
Tests for the EmailAction plugin.

Namespace

Drupal\KernelTests\Core\Action

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installEntitySchema('user');
  $this
    ->installSchema('dblog', [
    'watchdog',
  ]);
}