function MigrateStubTest::setUp
Overrides MigrateTestBase::setUp
File
-
core/
modules/ migrate/ tests/ src/ Kernel/ MigrateStubTest.php, line 55
Class
- MigrateStubTest
- Tests the migrate.stub Service.
Namespace
Drupal\Tests\migrate\KernelCode
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',
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.