You are here

protected function MigrateImageTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/image/tests/src/Kernel/Migrate/d6/MigrateImageTest.php \Drupal\Tests\image\Kernel\Migrate\d6\MigrateImageTest::setUp()

Overrides MigrateNodeTestBase::setUp

File

core/modules/image/tests/src/Kernel/Migrate/d6/MigrateImageTest.php, line 29

Class

MigrateImageTest
Image migration test.

Namespace

Drupal\Tests\image\Kernel\Migrate\d6

Code

protected function setUp() {
  parent::setUp();
  $this
    ->setUpMigratedFiles();
  $this
    ->installSchema('file', [
    'file_usage',
  ]);
  $this
    ->executeMigrations([
    'd6_node',
  ]);
}