function MigrateTaxonomyTermTest::testTaxonomyTerms

Assert the forum taxonomy terms.

File

core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTest.php, line 44

Class

MigrateTaxonomyTermTest
Test migration of forum taxonomy terms.

Namespace

Drupal\Tests\forum\Kernel\Migrate\d6

Code

public function testTaxonomyTerms() : void {
  $this->assertEntity(8, 'en', 'General discussion', 'forums', '', NULL, 2, [
    '0',
  ], 0);
  $this->assertEntity(9, 'en', 'Earth', 'forums', '', NULL, 0, [
    '0',
  ], 1);
  $this->assertEntity(10, 'en', 'Birds', 'forums', '', NULL, 0, [
    '9',
  ], 0);
  $this->assertEntity(11, 'en', 'Oak', 'trees', '', NULL, 0, [
    '0',
  ], NULL);
  $this->assertEntity(12, 'en', 'Ash', 'trees', '', NULL, 0, [
    '0',
  ], NULL);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.