installConfig(static::$modules); $this->executeMigrations([ 'block_content_type', 'block_content_body_field', 'block_content_entity_form_display', ]); } /** * Asserts a display entity. * * @param string $id * The entity ID. * @param string $component * The ID of the form component. */ protected function assertDisplay($id, $component_id) { $component = EntityFormDisplay::load($id)->getComponent($component_id); $this->assertInternalType('array', $component); $this->assertSame('text_textarea_with_summary', $component['type']); } /** * Tests the migrated display configuration. */ public function testMigration() { $this->assertDisplay('block_content.basic.default', 'body'); } }