You are here

protected function MigrateMenuTranslationTest::setUp in Drupal 9

Overrides MigrateDrupal7TestBase::setUp

File

core/modules/system/tests/src/Kernel/Migrate/d7/MigrateMenuTranslationTest.php, line 29

Class

MigrateMenuTranslationTest
Tests menu translation migration.

Namespace

Drupal\Tests\system\Kernel\Migrate\d7

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->installSchema('locale', [
    'locales_source',
    'locales_target',
    'locales_location',
  ]);
  $this
    ->executeMigrations([
    'language',
    'd7_menu',
    'd7_menu_translation',
  ]);
}