You are here

protected function EntityLookupTest::setUp in Migrate Plus 8.4

Same name and namespace in other branches
  1. 8.5 tests/src/Kernel/Plugin/migrate/process/EntityLookupTest.php \Drupal\Tests\migrate_plus\Kernel\Plugin\migrate\process\EntityLookupTest::setUp()

Overrides KernelTestBase::setUp

File

tests/src/Kernel/Plugin/migrate/process/EntityLookupTest.php, line 35

Class

EntityLookupTest
Tests the entity_lookup plugin.

Namespace

Drupal\Tests\migrate_plus\Kernel\Plugin\migrate\process

Code

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