protected function MigrateCommentEntityDisplayTest::assertDisplay in Drupal 9
Same name in this branch
- 9 core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityDisplayTest.php \Drupal\Tests\comment\Kernel\Migrate\d6\MigrateCommentEntityDisplayTest::assertDisplay()
- 9 core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityDisplayTest.php \Drupal\Tests\comment\Kernel\Migrate\d7\MigrateCommentEntityDisplayTest::assertDisplay()
Same name and namespace in other branches
- 8 core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityDisplayTest.php \Drupal\Tests\comment\Kernel\Migrate\d7\MigrateCommentEntityDisplayTest::assertDisplay()
- 10 core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityDisplayTest.php \Drupal\Tests\comment\Kernel\Migrate\d7\MigrateCommentEntityDisplayTest::assertDisplay()
Asserts various aspects of a comment component in an entity view display.
Parameters
string $id: The entity ID.
string $component_id: The ID of the display component.
1 call to MigrateCommentEntityDisplayTest::assertDisplay()
- MigrateCommentEntityDisplayTest::testMigration in core/
modules/ comment/ tests/ src/ Kernel/ Migrate/ d7/ MigrateCommentEntityDisplayTest.php - Tests the migrated display configuration.
File
- core/
modules/ comment/ tests/ src/ Kernel/ Migrate/ d7/ MigrateCommentEntityDisplayTest.php, line 43
Class
- MigrateCommentEntityDisplayTest
- Tests the migration of comment entity displays from Drupal 7.
Namespace
Drupal\Tests\comment\Kernel\Migrate\d7Code
protected function assertDisplay($id, $component_id) {
$component = EntityViewDisplay::load($id)
->getComponent($component_id);
$this
->assertIsArray($component);
$this
->assertSame('hidden', $component['label']);
$this
->assertSame('comment_default', $component['type']);
$this
->assertSame(20, $component['weight']);
}