You are here

protected function StaticMapTest::setUp in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/migrate/tests/src/Unit/process/StaticMapTest.php \Drupal\Tests\migrate\Unit\process\StaticMapTest::setUp()

Overrides MigrateProcessTestCase::setUp

File

core/modules/migrate/tests/src/Unit/process/StaticMapTest.php, line 20

Class

StaticMapTest
Tests the static map process plugin.

Namespace

Drupal\Tests\migrate\Unit\process

Code

protected function setUp() : void {
  $configuration['map']['foo']['bar'] = 'baz';
  $this->plugin = new StaticMap($configuration, 'map', []);
  parent::setUp();
}