installEntitySchema('node'); $this->installEntitySchema('comment'); $this->installConfig(static::$modules); $this->executeMigrations([ 'd7_user_role', 'd7_user', 'd7_node_type', 'd7_comment_type', 'd7_field', 'd7_field_instance', 'd7_node:page', ]); } /** * Test the emfield migration. */ public function testMigration() { $migrated_vimeo = $this->loadEntityByLabel('Vimeo Example'); $migrated_youtube = $this->loadEntityByLabel('YouTube Example'); $this->assertEquals('https://vimeo.com/21681203', $migrated_vimeo->field_video->value); $this->assertEquals('https://www.youtube.com/watch?v=XgYu7-DQjDQ', $migrated_youtube->field_video->value); } }