function Drupal6SqlBaseTest::setUp
Overrides UnitTestCase::setUp
File
- 
              core/modules/ migrate_drupal/ tests/ src/ Unit/ source/ d6/ Drupal6SqlBaseTest.php, line 71 
Class
- Drupal6SqlBaseTest
- Tests the D6 SQL base class.
Namespace
Drupal\Tests\migrate_drupal\Unit\source\d6Code
protected function setUp() : void {
  $plugin = 'placeholder_id';
  /** @var \Drupal\Core\State\StateInterface $state */
  $state = $this->createMock('Drupal\\Core\\State\\StateInterface');
  /** @var \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager */
  $entity_type_manager = $this->createMock('Drupal\\Core\\Entity\\EntityTypeManagerInterface');
  $this->base = new TestDrupal6SqlBase($this->migrationConfiguration, $plugin, [], $this->getMigration(), $state, $entity_type_manager);
  $this->base
    ->setDatabase($this->getDatabase($this->databaseContents));
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
