/**
* Tests the Drupal 6 term-node association to Drupal 8 migration.
*/ publicfunctiontestTermNode(){ // This is a base plugin id and we want to run all derivatives.
$this->executeMigrations(['d6_term_node']);
/**
* Tests the Drupal 6 vocabulary-node type association to Drupal 8 migration.
*/ publicfunctiontestVocabularyField(){ // Test that the field exists.
$field_storage_id = 'node.field_tags'; /** @var \Drupal\field\FieldStorageConfigInterface $field_storage */ $field_storage = FieldStorageConfig::load($field_storage_id); $this->assertSame($field_storage_id, $field_storage->id());