function MigrateImageTest::testNode
Same name in other branches
- 9 core/modules/image/tests/src/Kernel/Migrate/d6/MigrateImageTest.php \Drupal\Tests\image\Kernel\Migrate\d6\MigrateImageTest::testNode()
- 10 core/modules/image/tests/src/Kernel/Migrate/d6/MigrateImageTest.php \Drupal\Tests\image\Kernel\Migrate\d6\MigrateImageTest::testNode()
- 11.x core/modules/image/tests/src/Kernel/Migrate/d6/MigrateImageTest.php \Drupal\Tests\image\Kernel\Migrate\d6\MigrateImageTest::testNode()
Test image migration from Drupal 6 to 8.
File
-
core/
modules/ image/ tests/ src/ Kernel/ Migrate/ d6/ MigrateImageTest.php, line 41
Class
- MigrateImageTest
- Image migration test.
Namespace
Drupal\Tests\image\Kernel\Migrate\d6Code
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);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.