setUpMigratedFiles(); $this->installSchema('file', ['file_usage']); $this->executeMigrations([ 'd6_node', ]); } /** * Test image migration from Drupal 6 to 8. */ public function testNode() { $node = Node::load(9); // Test the image field sub fields. $this->assertSame('2', $node->field_test_imagefield->target_id); $this->assertSame('Test alt', $node->field_test_imagefield->alt); $this->assertSame('Test title', $node->field_test_imagefield->title); $this->assertSame('80', $node->field_test_imagefield->width); $this->assertSame('60', $node->field_test_imagefield->height); } }