You are here

protected function MigrateStubTest::setUp in Drupal 10

Same name in this branch
  1. 10 core/modules/migrate/tests/src/Unit/MigrateStubTest.php \Drupal\Tests\migrate\Unit\MigrateStubTest::setUp()
  2. 10 core/modules/migrate/tests/src/Kernel/MigrateStubTest.php \Drupal\Tests\migrate\Kernel\MigrateStubTest::setUp()
Same name and namespace in other branches
  1. 8 core/modules/migrate/tests/src/Kernel/MigrateStubTest.php \Drupal\Tests\migrate\Kernel\MigrateStubTest::setUp()
  2. 9 core/modules/migrate/tests/src/Kernel/MigrateStubTest.php \Drupal\Tests\migrate\Kernel\MigrateStubTest::setUp()

File

core/modules/migrate/tests/src/Kernel/MigrateStubTest.php, line 53

Class

MigrateStubTest
Tests the migrate.stub Service.

Namespace

Drupal\Tests\migrate\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->setTestLogger();
  $this->migrateStub = $this->container
    ->get('migrate.stub');
  $this->migrateLookup = $this->container
    ->get('migrate.lookup');
  $this->migrationPluginManager = $this->container
    ->get('plugin.manager.migration');
  $this
    ->installEntitySchema('node');
  $this
    ->installEntitySchema('user');
  $this
    ->installSchema('node', 'node_access');
  $this
    ->installConfig([
    'node',
    'user',
  ]);
  $this
    ->createContentType([
    'type' => 'node_lookup',
  ]);
}