installEntitySchema('node'); $this->installEntitySchema('comment'); $this->installConfig(['node', 'comment']); $this->executeMigration('d6_comment_type'); } /** * Tests the Drupal 6 to Drupal 8 comment type migration. */ public function testCommentType() { $comment_type = CommentType::load('comment'); $this->assertIdentical('node', $comment_type->getTargetEntityTypeId()); $comment_type = CommentType::load('comment_no_subject'); $this->assertIdentical('node', $comment_type->getTargetEntityTypeId()); } }