Same name in this branch
  1. 8.9.x core/modules/migrate_drupal/tests/src/Unit/FieldDiscoveryTest.php \Drupal\Tests\migrate_drupal\Unit\FieldDiscoveryTest::setUp()
  2. 8.9.x core/modules/migrate_drupal/tests/src/Kernel/d6/FieldDiscoveryTest.php \Drupal\Tests\migrate_drupal\Kernel\d6\FieldDiscoveryTest::setUp()
  3. 8.9.x core/modules/migrate_drupal/tests/src/Kernel/d7/FieldDiscoveryTest.php \Drupal\Tests\migrate_drupal\Kernel\d7\FieldDiscoveryTest::setUp()
Same name and namespace in other branches
  1. 10 core/modules/migrate_drupal/tests/src/Kernel/d6/FieldDiscoveryTest.php \Drupal\Tests\migrate_drupal\Kernel\d6\FieldDiscoveryTest::setUp()
  2. 9 core/modules/migrate_drupal/tests/src/Kernel/d6/FieldDiscoveryTest.php \Drupal\Tests\migrate_drupal\Kernel\d6\FieldDiscoveryTest::setUp()

Overrides MigrateDrupal6TestBase::setUp

File

core/modules/migrate_drupal/tests/src/Kernel/d6/FieldDiscoveryTest.php, line 66

Class

FieldDiscoveryTest
Tests FieldDiscovery service against Drupal 6.

Namespace

Drupal\Tests\migrate_drupal\Kernel\d6

Code

public function setUp() {
  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');
}