You are here

protected function EntityExistsTest::setUp in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/migrate/tests/src/Kernel/Plugin/EntityExistsTest.php \Drupal\Tests\migrate\Kernel\Plugin\EntityExistsTest::setUp()
  2. 9 core/modules/migrate/tests/src/Kernel/Plugin/EntityExistsTest.php \Drupal\Tests\migrate\Kernel\Plugin\EntityExistsTest::setUp()

Overrides KernelTestBase::setUp

File

core/modules/migrate/tests/src/Kernel/Plugin/EntityExistsTest.php, line 25

Class

EntityExistsTest
Tests the EntityExists process plugin.

Namespace

Drupal\Tests\migrate\Kernel\Plugin

Code

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