protected function MigrateCommentFieldTest::assertEntity in Drupal 9
Same name in this branch
- 9 core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentFieldTest.php \Drupal\Tests\comment\Kernel\Migrate\d6\MigrateCommentFieldTest::assertEntity()
- 9 core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentFieldTest.php \Drupal\Tests\comment\Kernel\Migrate\d7\MigrateCommentFieldTest::assertEntity()
Same name and namespace in other branches
- 8 core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentFieldTest.php \Drupal\Tests\comment\Kernel\Migrate\d6\MigrateCommentFieldTest::assertEntity()
Asserts a comment field entity.
Parameters
string $comment_type: The comment type.
1 call to MigrateCommentFieldTest::assertEntity()
- MigrateCommentFieldTest::testMigration in core/
modules/ comment/ tests/ src/ Kernel/ Migrate/ d6/ MigrateCommentFieldTest.php - Tests the migrated comment fields.
File
- core/
modules/ comment/ tests/ src/ Kernel/ Migrate/ d6/ MigrateCommentFieldTest.php, line 39
Class
- MigrateCommentFieldTest
- Tests the migration of comment fields from Drupal 6.
Namespace
Drupal\Tests\comment\Kernel\Migrate\d6Code
protected function assertEntity($comment_type) {
$entity = FieldStorageConfig::load('node.' . $comment_type);
$this
->assertInstanceOf(FieldStorageConfig::class, $entity);
$this
->assertSame('node', $entity
->getTargetEntityTypeId());
$this
->assertSame('comment', $entity
->getType());
$this
->assertSame($comment_type, $entity
->getSetting('comment_type'));
}