You are here

protected function MigrateRollbackTest::setUp in Migrate Tools 8.5

Same name and namespace in other branches
  1. 8.4 tests/src/Kernel/MigrateRollbackTest.php \Drupal\Tests\migrate_tools\Kernel\MigrateRollbackTest::setUp()

Overrides MigrateTestBase::setUp

File

tests/src/Kernel/MigrateRollbackTest.php, line 33

Class

MigrateRollbackTest
Tests rolling back of imports.

Namespace

Drupal\Tests\migrate_tools\Kernel

Code

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