You are here

protected function MigrateRollbackTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate/src/Tests/MigrateRollbackTest.php \Drupal\migrate\Tests\MigrateRollbackTest::setUp()

Performs setup tasks before each individual test method is run.

Overrides MigrateTestBase::setUp

File

core/modules/migrate/src/Tests/MigrateRollbackTest.php, line 34
Contains \Drupal\migrate\Tests\MigrateRollbackTest.

Class

MigrateRollbackTest
Tests rolling back of imports.

Namespace

Drupal\migrate\Tests

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installEntitySchema('taxonomy_vocabulary');
  $this
    ->installEntitySchema('taxonomy_term');
  $this
    ->installConfig([
    'taxonomy',
  ]);
}