protected function MigrateDrupal6TestBase::setUp in Drupal 10
Same name and namespace in other branches
- 8 core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6TestBase.php \Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase::setUp()
- 9 core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6TestBase.php \Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase::setUp()
Overrides MigrateDrupalTestBase::setUp
33 calls to MigrateDrupal6TestBase::setUp()
- EntityContentBaseTest::setUp in core/
modules/ migrate_drupal/ tests/ src/ Kernel/ d6/ EntityContentBaseTest.php - FieldDiscoveryTest::setUp in core/
modules/ migrate_drupal/ tests/ src/ Kernel/ d6/ FieldDiscoveryTest.php - IdMapTableNoDummyTest::setUp in core/
modules/ migrate_drupal/ tests/ src/ Kernel/ IdMapTableNoDummyTest.php - MigrateContactCategoryTest::setUp in core/
modules/ contact/ tests/ src/ Kernel/ Migrate/ MigrateContactCategoryTest.php - MigrateDrupal6AuditIdsTest::setUp in core/
modules/ migrate_drupal/ tests/ src/ Kernel/ d6/ MigrateDrupal6AuditIdsTest.php
94 methods override MigrateDrupal6TestBase::setUp()
- EntityContentBaseTest::setUp in core/
modules/ migrate_drupal/ tests/ src/ Kernel/ d6/ EntityContentBaseTest.php - FieldDiscoveryTest::setUp in core/
modules/ migrate_drupal/ tests/ src/ Kernel/ d6/ FieldDiscoveryTest.php - IdMapTableNoDummyTest::setUp in core/
modules/ migrate_drupal/ tests/ src/ Kernel/ IdMapTableNoDummyTest.php - MigrateActionConfigsTest::setUp in core/
modules/ system/ tests/ src/ Kernel/ Migrate/ d6/ MigrateActionConfigsTest.php - MigrateActionsTest::setUp in core/
modules/ system/ tests/ src/ Kernel/ Migrate/ d6/ MigrateActionsTest.php
File
- core/
modules/ migrate_drupal/ tests/ src/ Kernel/ d6/ MigrateDrupal6TestBase.php, line 32
Class
- MigrateDrupal6TestBase
- Base class for Drupal 6 migration tests.
Namespace
Drupal\Tests\migrate_drupal\Kernel\d6Code
protected function setUp() : void {
parent::setUp();
// Add a node classic migrate table to the destination site so that tests
// run by default with the classic node migrations.
$this
->makeNodeMigrateMapTable(NodeMigrateType::NODE_MIGRATE_TYPE_CLASSIC, '6');
$this
->loadFixture($this
->getFixtureFilePath());
}