protected $migrationPluginManager;
/**
* {@inheritdoc}
*/
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'
]);
} /**
* Tests stub creation.
*/