You are here

public function MigrateNodeTaxonomyTest::testMigration in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateNodeTaxonomyTest.php \Drupal\Tests\taxonomy\Kernel\Migrate\d7\MigrateNodeTaxonomyTest::testMigration()
  2. 10 core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateNodeTaxonomyTest.php \Drupal\Tests\taxonomy\Kernel\Migrate\d7\MigrateNodeTaxonomyTest::testMigration()

Test node migration from Drupal 7 to 8.

File

core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateNodeTaxonomyTest.php, line 42

Class

MigrateNodeTaxonomyTest
@group taxonomy

Namespace

Drupal\Tests\taxonomy\Kernel\Migrate\d7

Code

public function testMigration() {
  $node = Node::load(2);
  $this
    ->assertInstanceOf(NodeInterface::class, $node);
  $this
    ->assertEqual(9, $node->field_tags[0]->target_id);
  $this
    ->assertEqual(14, $node->field_tags[1]->target_id);
  $this
    ->assertEqual(17, $node->field_tags[2]->target_id);
}