You are here

protected function MigrateTaxonomyTermTest::setUp in Zircon Profile 8

Same name in this branch
  1. 8 core/modules/taxonomy/src/Tests/Migrate/d6/MigrateTaxonomyTermTest.php \Drupal\taxonomy\Tests\Migrate\d6\MigrateTaxonomyTermTest::setUp()
  2. 8 core/modules/taxonomy/src/Tests/Migrate/d7/MigrateTaxonomyTermTest.php \Drupal\taxonomy\Tests\Migrate\d7\MigrateTaxonomyTermTest::setUp()
Same name and namespace in other branches
  1. 8.0 core/modules/taxonomy/src/Tests/Migrate/d7/MigrateTaxonomyTermTest.php \Drupal\taxonomy\Tests\Migrate\d7\MigrateTaxonomyTermTest::setUp()

Performs setup tasks before each individual test method is run.

Overrides MigrateDrupal7TestBase::setUp

File

core/modules/taxonomy/src/Tests/Migrate/d7/MigrateTaxonomyTermTest.php, line 26
Contains \Drupal\taxonomy\Tests\Migrate\d7\MigrateTaxonomyTermTest.

Class

MigrateTaxonomyTermTest
Upgrade taxonomy terms.

Namespace

Drupal\taxonomy\Tests\Migrate\d7

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installEntitySchema('taxonomy_term');
  $this
    ->executeMigrations([
    'd7_taxonomy_vocabulary',
    'd7_taxonomy_term',
  ]);
}