installConfig(['block_content']); $this->installEntitySchema('block_content'); $this->executeMigration('block_content_type'); } /** * Tests the block content type migration. */ public function testBlockContentTypeMigration() { /** @var \Drupal\block_content\BlockContentTypeInterface $entity */ $entity = BlockContentType::load('basic'); $this->assertTrue($entity instanceof BlockContentTypeInterface); $this->assertIdentical('Basic', $entity->label()); } }