protected function MigrateAclList78Test::setUp in ACL 8
Overrides MigrateDrupal7TestBase::setUp
File
- src/
Tests/ Migrate/ d7/ MigrateAclList78Test.php, line 43
Class
- MigrateAclList78Test
- Tests migration of ACL columns from Drupal 7 to Drupal 8.
Namespace
Drupal\acl\Tests\Migrate\d7Code
protected function setUp() : void {
parent::setUp();
$this
->loadFixture(__DIR__ . '/../../../../tests/fixtures/d6_d7_table.php');
$this
->installSchema('acl', [
'acl',
'acl_user',
'acl_node',
]);
$this
->installSchema('node', [
'node_access',
]);
$this
->executeMigration('d6_d7_acl');
$this
->executeMigration('d6_d7_acl_user');
$this
->executeMigration('d6_d7_acl_node');
$this
->migrateContent();
}