protected function MigrateBookTest::setUp in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/book/src/Tests/Migrate/d6/MigrateBookTest.php \Drupal\book\Tests\Migrate\d6\MigrateBookTest::setUp()
Performs setup tasks before each individual test method is run.
Overrides MigrateDrupal6TestBase::setUp
File
- core/
modules/ book/ src/ Tests/ Migrate/ d6/ MigrateBookTest.php, line 28 - Contains \Drupal\book\Tests\Migrate\d6\MigrateBookTest.
Class
- MigrateBookTest
- Upgrade book structure.
Namespace
Drupal\book\Tests\Migrate\d6Code
protected function setUp() {
parent::setUp();
$this
->installSchema('book', [
'book',
]);
$this
->installSchema('node', [
'node_access',
]);
$this
->migrateContent();
$this
->executeMigration('d6_book');
}