function FieldDiscoveryTest::setUp
Overrides MigrateDrupal6TestBase::setUp
File
-
core/
modules/ migrate_drupal/ tests/ src/ Kernel/ d6/ FieldDiscoveryTest.php, line 71
Class
- FieldDiscoveryTest
- Tests FieldDiscovery service against Drupal 6.
Namespace
Drupal\Tests\migrate_drupal\Kernel\d6Code
protected function setUp() : void {
parent::setUp();
$this->installConfig([
'node',
]);
$this->executeMigration('d6_node_type');
$this->executeMigration('d6_field');
$this->executeMigration('d6_field_instance');
$this->fieldDiscovery = $this->container
->get('migrate_drupal.field_discovery');
$this->migrationPluginManager = $this->container
->get('plugin.manager.migration');
$this->fieldPluginManager = $this->container
->get('plugin.manager.migrate.field');
$this->logger = $this->container
->get('logger.channel.migrate_drupal');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.